blob: ea1f4ce3ad40848def12057953711e1c32922815 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Усадьба Толково</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.7;
max-width: 820px;
margin: 40px auto;
padding: 0 20px;
color: #222;
}
h1 {
color: #333;
text-align: center;
margin-bottom: 8px;
}
.meta {
text-align: center;
color: #666;
font-size: 0.95em;
margin-bottom: 30px;
}
.home-link {
text-align: center;
margin: 15px 0 25px 0;
}
.home-link a {
color: #0066cc;
text-decoration: none;
font-size: 0.95em;
}
.home-link a:hover {
text-decoration: underline;
}
figure {
margin: 30px 0;
}
img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
border: 1px solid #ddd;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
figcaption {
text-align: center;
font-size: 0.96em;
color: #555;
margin-top: 10px;
font-style: italic;
}
.references {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #eee;
}
.references h2 {
font-size: 1.25em;
color: #444;
margin-bottom: 12px;
}
.references ul {
list-style: none;
padding: 0;
}
.references li {
margin-bottom: 8px;
font-size: 0.97em;
color: #333;
}
.references li:before {
content: "•";
color: #888;
margin-right: 8px;
}
.back-to-home {
text-align: center;
margin: 50px 0 30px 0;
}
.back-to-home a {
display: inline-block;
padding: 12px 24px;
background-color: #0066cc;
color: white;
text-decoration: none;
border-radius: 6px;
font-weight: 500;
transition: background 0.3s;
}
.back-to-home a:hover {
background-color: #0055aa;
}
</style>
</head>
<body>
<h1>Усадьба Толково</h1>
<div class="meta">
<strong>Дата:</strong> 2024-06-02 |
<strong>Теги:</strong> Толково
</div>
<div class="home-link">
<a href="/">← Вернуться на главную страницу</a>
</div>
<p>В Литовском архиве хранится план имения Толкова от 18 сентября 1839 года.</p>
<p>Как мы видим, на плане усадьба называется «Имение Толкова». А само название «Толково» как деревни образовано от трёх деревень: Кагалы, Казаны и Яцкивцы.</p>
<figure>
<img src="/image/tolkowo_manor/1.png"
alt="План имения Толкова, 1839"
title="План усадьбы">
<figcaption>План имения Толкова, 18 сентября 1839 года (Литовский архив)</figcaption>
</figure>
<div class="references">
<h2>Ссылка на материал в Литовском архиве</h2>
<ul>
<li><a href="http://elibrary.mab.lt/handle/1/13040" target="_blank">http://elibrary.mab.lt/handle/1/13040</a></li>
</ul>
</div>
<div class="back-to-home">
<a href="/">← Вернуться на главную страницу</a>
</div>
</body>
</html>
|