Reduce html files (space) tab size 4 -> 2

This commit is contained in:
Raymond Wanyoike 2014-10-28 21:37:47 +03:00
commit 288e6464bd
16 changed files with 260 additions and 260 deletions

View file

@ -1,15 +1,15 @@
{% extends "base.html" %}
{% block title %}
{{ SITENAME }} — Archives
{{ SITENAME }} — Archives
{% endblock %}
{% block content %}
<h1>Archives</h1>
<dl class="list dl-horizontal">
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
<h1>Archives</h1>
<dl class="list dl-horizontal">
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}