diff options
Diffstat (limited to 'design/templates/archives/src_home.html')
-rw-r--r-- | design/templates/archives/src_home.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/design/templates/archives/src_home.html b/design/templates/archives/src_home.html index 3ef6c15..9f373a3 100644 --- a/design/templates/archives/src_home.html +++ b/design/templates/archives/src_home.html @@ -6,11 +6,13 @@ {% 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> + <li><a href="/" title="luxagraf homepage" itemprop="url"><span itemprop="title">Home</span></a> → </li>{% if topic %} + <li><a href="/src/" title="luxagraf:src homepage" itemprop="url"><span itemprop="title"><code>src</code></span></a> → </li> + <li>{{topic}}</li>{%else%} + <li><code>src</code></li>{%endif%} </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' %} + <h1 class="topic-hed"><code>src:</code> {% if topic %}Articles about {{topic.pluralized_name}}{%else%}Archive{%endif%}</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><a href="{{object.get_absolute_url}}">{{object.title|safe|smartypants|widont}}</a></h2> <p>{{object.meta_description|safe|smartypants|widont}} <a href="{{object.get_absolute_url}}">Read ⇢</a></p> |