2025-01-29 16:35:18 +03:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>{{title}}</title>
|
|
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
|
|
{{#if rss}}
|
2025-01-29 17:47:50 +03:00
|
|
|
<link rel="alternate" type="application/rss+xml" title="{{style.title}}" href="/feed.xml" />
|
2025-01-29 16:35:18 +03:00
|
|
|
{{/if}}
|
|
|
|
{{#if js}}
|
|
|
|
<script src="/static/date.js" defer></script>
|
|
|
|
<script src="/static/sort.js" defer></script>
|
|
|
|
<script src="/static/main.js" defer></script>
|
|
|
|
{{/if}}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main>
|
|
|
|
<div id="posts">
|
|
|
|
{{>post_list}}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|