{% 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 }}
{%- endif -%} {%- endfor -%}
{%- endblock -%}