site-sophistry/templates/index.html
2022-09-28 19:42:00 +08:00

20 lines
509 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,minimum-scale=1">
<meta charset="utf-8">
<title>{{ section.title ~ " | " ~ section.description }}</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>{{ section.title }}</h1>
<p>{{ section.description }}</p>
<div class="flex wrap width-content justify-content">
{{ section.content | safe }}
</div>
</body>
</html>