blob: 13b87c36c7badde617a2c03edfeb9c6d896d317c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% extends 'base.html' %}
{% load typogrify_tags %}
{% block pagetitle %}Notes and Essays On Living - By Scott Gilbertson {% endblock %}
{% block metadescription %}Essays and stories on self-reliance, DIY, repair, tools, birding, walking, living well, and other ephemera.{% endblock %}
{% block breadcrumbs %}{% if breadcrumbs %}{% include "lib/breadcrumbs.html" with breadcrumbs=breadcrumbs %}{%endif%}{% endblock %}
{% block primary %}<main role="main" id="essay-archive" class="essay-archive archive-list">
<div class="archive-intro">
<h1>Craft</h1>
<h3>It's not just what you do, but how you do it that creates the world around you.
</h3>
</div>
<ul class="archive-list">{% for object in object_list %}
<li class="h-entry hentry archive-list-card archive-list-card-sm" itemscope itemType="http://schema.org/Article">
<span class="date dt-published card-smcaps">{{object.pub_date|date:"F Y"}}</span>
<a href="{{object.get_absolute_url}}">
<h2 class="card-hed">{{object.title|safe|smartypants|widont}}</h2>
<p class="p-summary card-lede">{% if object.subtitle %}{{object.subtitle}}{%else%}{{object.meta_description|safe|smartypants|widont}}{%endif%}</p>
</a>
</li>{%endfor%}
</ul>
</main>
{%endblock%}
|