website-new/templates/section.html
2025-05-16 08:16:58 +03:00

25 lines
611 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>{{ section.title }} // fzorb.xyz</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="Schizophrenic ramblings">
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<div class="container">
{% include "nav.html" %}
<h1>{{ section.title }}</h1>
<ul>
{% for post in section.pages | sort(attribute="date", reverse=true) | reverse %}
<li><a href="{{ post.permalink }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</body>
</html