blog/src/index.njk

47 lines
1.1 KiB
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" -%}
<div 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>
</div>
{%- elif post.data.type == "essay" -%}
<div class="essay">
<header>
<img class="hash" src="/assets/document.svg" type="image/svg+xml">
<a class="title" href="{{ post.url }}">{{ post.data.title }}</a>
</header>
<div class="content">
{{ post.page.excerpt | safe }}
<a class="read-more" href="{{ post.url }}">Read more...</a>
</div>
<footer>
Posted on {{ post.date | formatDate }}
</footer>
</div>
{%- endif -%}
{%- endfor -%}
</main>
{%- endblock -%}