summaryrefslogtreecommitdiff
path: root/design/templates/src/topic_list.html
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-01-27 20:37:10 -0500
committerluxagraf <sng@luxagraf.net>2020-01-27 20:37:10 -0500
commit6e8b62d8c38f6ca366f240ea45ad738ebfd62943 (patch)
treeb8c695cdd5c7f1f7729fa6750ed49c1eb2eae3e8 /design/templates/src/topic_list.html
parent09abece4982e8dceabe1dd8d678639205a4a6208 (diff)
abstracted breadcrumbs into seperate template
Diffstat (limited to 'design/templates/src/topic_list.html')
-rw-r--r--design/templates/src/topic_list.html35
1 files changed, 0 insertions, 35 deletions
diff --git a/design/templates/src/topic_list.html b/design/templates/src/topic_list.html
deleted file mode 100644
index 7149823..0000000
--- a/design/templates/src/topic_list.html
+++ /dev/null
@@ -1,35 +0,0 @@
-{% extends 'base.html' %}
-{% load typogrify_tags %}
-{% load comments %}
-
-{% block pagetitle %}Tutorials and tools for building great things{% endblock %}
-
-{% block metadescription %}Tutorials about {{topic}} - by Scott Gilbertson.{% endblock %}
-{%block sitesubtitle %}Code Slowly{% 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 tools for building great things on the web.</h2>
- <p>The indie web is an amazing democratic publishing platform unlike anything in history. The catch is, to avoid serving at the pleasure of the corporate king, you need to know <em>how</em> to publish. That's what these articles are here for, to help you learn how to use independent, community supported open source tools. The web won't last forever, let's build something cool while we can.</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">Tutorials about {{topic}}</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%}