diff options
author | luxagraf <sng@luxagraf.net> | 2015-10-29 20:09:57 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2015-10-29 20:09:57 -0400 |
commit | 1b51da329b70dfbc91e1a8c115047c387288fc92 (patch) | |
tree | 4545dc83868803cdaa9e9223ab3b4af1a48b186d /design/templates/archives/src_home.html | |
parent | f5afbcb35c0d15591e2e51b97b21a5d8a4e30dd1 (diff) |
tidied up the src section
Diffstat (limited to 'design/templates/archives/src_home.html')
-rw-r--r-- | design/templates/archives/src_home.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/design/templates/archives/src_home.html b/design/templates/archives/src_home.html index e69de29..2eee4eb 100644 --- a/design/templates/archives/src_home.html +++ b/design/templates/archives/src_home.html @@ -0,0 +1,19 @@ +{% extends 'src_base.html' %} +{% load typogrify_tags %} +{% load comments %} + +{% block pagetitle %}luxagraf:src - archive{% endblock %} + +{% block metadescription %}luxagraf:src - thoughts on code, the web, servers, tools and things that might be useful to a couple of people somewhere in the future.{% endblock %} +{% block primary %}<ul class="bl" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> + <li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> → </li> + <li><code>src</code></li> + </ul> + <main role="main" id="src-archive" class="src-archive"> + <h1 class="hide">Luxagraf:src</h1>{% for object in object_list %}{% if object.slug != 'about' %} + <article class="h-entry hentry {% cycle 'odd' 'even' %} {% cycle 'first' 'second' 'third' %}" itemscope itemType="http://schema.org/Article"> + <h2>{{object.title|safe}}</h2> + </article>{%endif%} + {%endfor%} + </main> +{%endblock%} |