diff options
Diffstat (limited to 'app/posts/templates/posts/howto_list.html')
-rw-r--r-- | app/posts/templates/posts/howto_list.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/posts/templates/posts/howto_list.html b/app/posts/templates/posts/howto_list.html new file mode 100644 index 0000000..13b87c3 --- /dev/null +++ b/app/posts/templates/posts/howto_list.html @@ -0,0 +1,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%} |