24 lines
554 B
Plaintext
24 lines
554 B
Plaintext
|
<!DOCTYPE html>
|
||
|
<html lang="ru">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>{{ site_title }}</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
background-color: #f4f4f4;
|
||
|
color: #333;
|
||
|
text-align: center;
|
||
|
padding-top: 50px;
|
||
|
}
|
||
|
h1 { color: #ff5722; }
|
||
|
h2 { color: #ff9800; }
|
||
|
p { font-size: 18px; }
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>{{ site_h1 }}</h1>
|
||
|
<h2>{{ site_h2 }}</h2>
|
||
|
<p>{{ site_p }}</p>
|
||
|
</body>
|
||
|
</html>
|