14 lines
407 B
Plaintext
14 lines
407 B
Plaintext
<!doctype html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{{ title }}</title>
|
|
<link rel="stylesheet" href="css/{{ css | default('site') }}.css" />
|
|
</head>
|
|
<body{% if bodyClass %} class="{{ bodyClass }}"{% endif %}>
|
|
{{ content | safe }}
|
|
<script src="js/inspector.js"></script>
|
|
</body>
|
|
</html>
|