{% extends "base.njk" %} {%- block title -%} Z. Charles Dziura | Weblog {%- endblock -%} {%- block body -%} {%- import "header.njk" as header -%} {{ header.header(page='home') }}
{%- for post in collections.all | reverse -%} {%- if post.data.type == "thought" -%}
An errant thought...
{{ post.content | safe }}
Posted on {{ post.date | formatDate }}
{%- elif post.data.type == "essay" -%}
{{ post.data.title }}
{{ post.page.excerpt | safe }} Read more...
{%- endif -%} {%- endfor -%}
{%- endblock -%}