+
+
+
+ {% include 'twitter.html' %}
+
+
+
+ {% include 'article_infos.html' %}
+ {{ article.content }}
+
+ {% if DISQUS_SITENAME and SITEURL and article.status != "draft" %}
+
+ {% endif %}
+
+
+
+{% endblock %}
diff --git a/themes/custom/templates/article_infos.html b/themes/custom/templates/article_infos.html
new file mode 100644
index 0000000..172ad85
--- /dev/null
+++ b/themes/custom/templates/article_infos.html
@@ -0,0 +1,23 @@
+
diff --git a/themes/custom/templates/author.html b/themes/custom/templates/author.html
new file mode 100644
index 0000000..0b37290
--- /dev/null
+++ b/themes/custom/templates/author.html
@@ -0,0 +1,2 @@
+{% extends "index.html" %}
+{% block title %}{{ SITENAME }} - {{ author }}{% endblock %}
diff --git a/themes/custom/templates/authors.html b/themes/custom/templates/authors.html
new file mode 100644
index 0000000..e61a332
--- /dev/null
+++ b/themes/custom/templates/authors.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+
+{% block title %}{{ SITENAME }} - Authors{% endblock %}
+
+{% block content %}
+
+
+
+{% include 'analytics.html' %}
+{% include 'disqus_script.html' %}
+
+
diff --git a/themes/custom/templates/categories.html b/themes/custom/templates/categories.html
new file mode 100644
index 0000000..07f6290
--- /dev/null
+++ b/themes/custom/templates/categories.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+
+{% block title %}{{ SITENAME }} - Categories{% endblock %}
+
+{% block content %}
+
+
+ Other articles
+
+
+ {% endif %}
+ {# other items #}
+ {% else %}
+ {% if loop.first %}
+
+
+ {% endif %}
+ -
+
+
+
+ {% include 'article_infos.html' %}
+ {{ article.summary }}
+
read more
+ {% include 'comments.html' %}
+
+
+ {% endif %}
+ {% if loop.last %}
+ {% if loop.length > 1 or articles_page.has_other_pages() %}
+
+ {% if articles_page.has_other_pages() %}
+ {% include 'pagination.html' %}
+ {% endif %}
+
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+{% else %}
+
+ {% if pages %}
+ Pages
+
+ {% else %}
+ This site currently has no content.
+ {% endif %}
+
+{% endif %}
+{% endblock content %}
diff --git a/themes/custom/templates/page.html b/themes/custom/templates/page.html
new file mode 100644
index 0000000..428c47f
--- /dev/null
+++ b/themes/custom/templates/page.html
@@ -0,0 +1,19 @@
+{% extends "base.html" %}
+{% block html_lang %}{{ page.lang }}{% endblock %}
+{% block title %}{{ page.title|striptags }}{% endblock %}
+
+{% block extra_head %}
+{% import 'translations.html' as translations with context %}
+{% if translations.entry_hreflang(page) %}
+ {{ translations.entry_hreflang(page) }}
+{% endif %}
+{% endblock %}
+
+{% block content %}
+
+ {{ page.title }}
+ {% import 'translations.html' as translations with context %}
+ {{ translations.translations_for(page) }}
+ {{ page.content }}
+
+{% endblock %}
diff --git a/themes/custom/templates/period_archives.html b/themes/custom/templates/period_archives.html
new file mode 100644
index 0000000..252e002
--- /dev/null
+++ b/themes/custom/templates/period_archives.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+{% block content %}
+
+Archives for {{ period | reverse | join(' ') }}
+
+
+{% for article in dates %}
+ - {{ article.locale_date }}
+ - {{ article.title }}
+{% endfor %}
+
+
+{% endblock %}
diff --git a/themes/custom/templates/tag.html b/themes/custom/templates/tag.html
new file mode 100644
index 0000000..68cdcba
--- /dev/null
+++ b/themes/custom/templates/tag.html
@@ -0,0 +1,2 @@
+{% extends "index.html" %}
+{% block title %}{{ SITENAME }} - {{ tag }}{% endblock %}
diff --git a/themes/custom/templates/taglist.html b/themes/custom/templates/taglist.html
new file mode 100644
index 0000000..58f3557
--- /dev/null
+++ b/themes/custom/templates/taglist.html
@@ -0,0 +1 @@
+{% if article.tags %}tags: {% for tag in article.tags %}{{ tag | escape }} {% endfor %}
{% endif %}
diff --git a/themes/custom/templates/tags.html b/themes/custom/templates/tags.html
new file mode 100644
index 0000000..fb09955
--- /dev/null
+++ b/themes/custom/templates/tags.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+
+{% block title %}{{ SITENAME }} - Tags{% endblock %}
+
+{% block content %}
+
+
+ Tags for {{ SITENAME }}
+
+ {% for tag, articles in tags|sort %}
+ - {{ tag }} ({{ articles|count }})
+ {% endfor %}
+
+
+
+{% endblock %}
diff --git a/themes/custom/templates/translations.html b/themes/custom/templates/translations.html
new file mode 100644
index 0000000..1eec7c4
--- /dev/null
+++ b/themes/custom/templates/translations.html
@@ -0,0 +1,16 @@
+{% macro translations_for(article) %}
+{% if article.translations %}
+Translations:
+ {% for translation in article.translations %}
+ {{ translation.lang }}
+ {% endfor %}
+{% endif %}
+{% endmacro %}
+
+{% macro entry_hreflang(entry) %}
+{% if entry.translations %}
+ {% for translation in entry.translations %}
+
+ {% endfor %}
+{% endif %}
+{% endmacro %}
diff --git a/themes/custom/templates/twitter.html b/themes/custom/templates/twitter.html
new file mode 100644
index 0000000..bf78c32
--- /dev/null
+++ b/themes/custom/templates/twitter.html
@@ -0,0 +1,3 @@
+{% if TWITTER_USERNAME %}
+
+{% endif %}
Comments !
+ + + +