Archives for {{ SITENAME }}
+ +-
+{% for article in dates %}
+
- {{ article.locale_date }} +
- {{ article.title }} +{% endfor %} +
From 8d144fb0274113b6fef6f94ad85091f4efbd0e31 Mon Sep 17 00:00:00 2001
From: David Runge tags: {% for tag in article.tags %}{{ tag }}{% endfor %}Archives for {{ SITENAME }}
+
+
+{% for article in dates %}
+
+{{ article.title
+ }}
{% include 'twitter.html' %} {{ SITENAME }} {% if SITESUBTITLE %} {{ SITESUBTITLE }}{% endif %}
+
+
+{% for category, articles in categories %}
+
+{% endblock %}
diff --git a/sleepmap-theme/templates/category.html b/sleepmap-theme/templates/category.html
new file mode 100644
index 0000000..56f8e93
--- /dev/null
+++ b/sleepmap-theme/templates/category.html
@@ -0,0 +1,2 @@
+{% extends "index.html" %}
+{% block title %}{{ SITENAME }} - {{ category }}{% endblock %}
diff --git a/sleepmap-theme/templates/github.html b/sleepmap-theme/templates/github.html
new file mode 100644
index 0000000..75592ac
--- /dev/null
+++ b/sleepmap-theme/templates/github.html
@@ -0,0 +1,9 @@
+{% if GITHUB_URL %}
+
+{% if GITHUB_POSITION != "left" %}
+
+{% else %}
+
+{% endif %}
+
+{% endif %}
diff --git a/sleepmap-theme/templates/index.html b/sleepmap-theme/templates/index.html
new file mode 100644
index 0000000..5e1e676
--- /dev/null
+++ b/sleepmap-theme/templates/index.html
@@ -0,0 +1,43 @@
+{% extends "base.html" %}
+{% block content_title %}{% endblock %}
+{% block content %}
+{% if articles %}
+{% for article in articles %}
+ {% if loop.index == 1 %}
+ Other articles
+
+
+ {% endif %}
+ {% else %}
+
+{{ article.title }}
+ Pages
+{% for page in PAGES %}
+ {{ page.title }}
+ {% if PDF_PROCESSOR %}get
+ the pdf{% endif %}
+ {{ page.content }}
+
Comments !
+ + +