blog/src/index.njk

29 lines
569 B
Text
Raw Normal View History

{% extends "base.njk" %}
{%- block title -%}
<title>Z. Charles Dziura | Weblog</title>
{%- endblock -%}
{%- block body -%}
{%- include "header.njk" -%}
<main>
{%- for post in collections.all -%}
{%- if post.data.type == "thought" -%}
<section class="thought">
<header>
<object data="assets/hash.svg" type="image/svg+xml"></object>
An errant thought...
</header>
<div class="content">
{{ post.content | safe }}
</div>
<footer>
Posted on {{ post.date | formatDate }}
</footer>
</section>
{%- endif -%}
{%- endfor -%}
</main>
{%- endblock -%}