blob: 23a572bbdac369d4496ada454db5cb2f58f3e32b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{% 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>{% 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="essay-archive" class="essay-archive archive-list">
<div class="essay-intro">
<h2>Tutorials and how-tos for web developers.</h2>
<p>Topics include Linux, Nginx, Python, Postgresql, free software, HTML, and once, Google AMP.</p>
<p>Some of the articles below were previously published in: <em><a href="https://arstechnica.com/">Ars Technica</a></em>, <em><a href="https://www.wired.com/author/scott-gilbertson/">Wired</a></em>, and <em><a href="https://www.theregister.co.uk/Author/Scott-Gilbertson/">The Register</a></em></p>
</div>
<h1 class="topic-hed">Articles</h1>
<ul>{% for object in object_list %}{% if object.slug != 'about' %}
<li class="h-entry hentry" itemscope itemType="http://schema.org/Article">
<span class="date dt-published">{{object.pub_date|date:"F Y"}}</span>
<a href="{{object.get_absolute_url}}">
<h2>{{object.title|safe|smartypants|widont}}</h2>
<p class="p-summary">{{object.meta_description|safe|smartypants|widont}}</p>
</a>
</li>
{%endif%}{%endfor%}</ul>
</main>
{%endblock%}
|