summaryrefslogtreecommitdiff
path: root/design/templates/archives
diff options
context:
space:
mode:
Diffstat (limited to 'design/templates/archives')
-rw-r--r--design/templates/archives/src_home.html35
1 files changed, 0 insertions, 35 deletions
diff --git a/design/templates/archives/src_home.html b/design/templates/archives/src_home.html
deleted file mode 100644
index 173596d..0000000
--- a/design/templates/archives/src_home.html
+++ /dev/null
@@ -1,35 +0,0 @@
-{% 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> &rarr; </li>{% if topic %}
- <li><a href="/src/" title="luxagraf:src homepage" itemprop="url"><span itemprop="title"><code>src</code></span></a> &rarr; </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>These tutorials are most often things I needed to do, and then I needed to do them again, but didnt remembered how. If you want to commit something to memory, write it down. Write it on the web and not only does your memory improve, but you have a URL you can consult later as well. </p>
- <p>A few 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 class="fancy-archive-list">{% 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%}