uninsane/templates/index.html
colin a027e6aa12 style: make the blog listings bigger
i could probably let them escape the relatively narrow view that i'm
currently reusing from the article page
2022-06-26 04:12:09 -07:00

26 lines
760 B
HTML

{% extends "base.html" %}
{% block breadcrumbs %}
<a href="/">~Perfectly Sane</a>
{% endblock breadcrumbs %}
{% block content %}
{% set blog = get_section(path="blog/_index.md") %}
<span class="listing">
<ul>
{% for page in blog.pages %}
{% if not page.extra.hidden %}
<li>
<div class="title">
<a href="{{ page.permalink | safe }}">{{ page.title }}</a>
</div>
<div class="subtitle">{{ page.description }}
<span class="date">({{ page.date | date(format="%Y/%m/%d") }})</span>
</div>
</li>
{% endif %}
{% endfor %}
</ul>
</span>
{% endblock content %}