23 lines
No EOL
518 B
Text
23 lines
No EOL
518 B
Text
---
|
|
layout: "base.njk"
|
|
---
|
|
<div class="main">
|
|
<h1 class="hero-title">
|
|
{{ title | safe }}
|
|
</h1>
|
|
|
|
<div class="page-content">
|
|
{{ content | safe }}
|
|
</div>
|
|
|
|
{# list all blog pages with the tag in page_for #}
|
|
{# TODO: make this into a macro
|
|
<ul>
|
|
{%- for post in collections[page_for] -%}
|
|
<li><a href="{{ post.url | url }}" class="link">{{ post.data.title }}</a></li>
|
|
{%- endfor -%}
|
|
</ul>
|
|
#}
|
|
</div>
|
|
|
|
{% include "src/_includes/partials/blob.html" %} |