34 lines
749 B
Text
34 lines
749 B
Text
|
{% extends "base.njk" %}
|
||
|
|
||
|
{%- block title -%}
|
||
|
<title>Z. Charles Dziura | Weblog</title>
|
||
|
{%- endblock -%}
|
||
|
|
||
|
{%- block body -%}
|
||
|
{%- import "header.njk" as header -%}
|
||
|
|
||
|
{{ header.header(page='thoughts') }}
|
||
|
|
||
|
<main>
|
||
|
{%- for post in collections.thoughts | 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 -%}
|