1
0
Fork 0
gaiety-life/_includes/indexlayout.njk
2022-01-08 20:39:17 -06:00

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>