33 lines
740 B
Text
33 lines
740 B
Text
{% extends "base.njk" %}
|
|
|
|
{%- block title -%}
|
|
<title>Z. Charles Dziura | Weblog</title>
|
|
{%- endblock -%}
|
|
|
|
{%- block body -%}
|
|
{%- import "header.njk" as header -%}
|
|
|
|
{{ header.header(page='home') }}
|
|
|
|
<main>
|
|
{%- for post in collections.all | reverse -%}
|
|
{%- if post.data.type == "thought" -%}
|
|
<section class="thought">
|
|
<header>
|
|
<img class="hash" src="/assets/hash.svg" type="image/svg+xml">
|
|
<span>An errant thought...</span>
|
|
<a href="{{ post.url }}" class="link">
|
|
<img src="/assets/link.svg" type="image/svg+xml">
|
|
</a>
|
|
</header>
|
|
<div class="content">
|
|
{{ post.content | safe }}
|
|
</div>
|
|
<footer>
|
|
Posted on {{ post.date | formatDate }}
|
|
</footer>
|
|
</section>
|
|
{%- endif -%}
|
|
{%- endfor -%}
|
|
</main>
|
|
{%- endblock -%}
|