17 lines
370 B
Text
17 lines
370 B
Text
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ title }}</title>
|
|
</head>
|
|
<body>
|
|
{{ content | safe }}
|
|
|
|
{%- for post in collections.all -%}
|
|
<a href="{{ post.url }}">
|
|
{{ post.data.title }}
|
|
</a>
|
|
{%- endfor -%}
|
|
</body>
|
|
</html>
|