blob: 2eee4ebff356b904548703f2f3c950b20a7dbc1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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%}
|