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,25 +1,25 @@
{% extends "base.html" %}
{% block head %}
{{ super() }}
{% if page.author %}
<meta name="author" content="{{ page.author }}">
{% endif %}
{% if page.summary %}
<meta name="description" content="{{ page.summary|striptags }}">
{% endif %}
<meta name="tags" contents="{% for tag in page.tags %}{{ tag }}, {% endfor %}">
{{ super() }}
{% if page.author %}
<meta name="author" content="{{ page.author }}">
{% endif %}
{% if page.summary %}
<meta name="description" content="{{ page.summary|striptags }}">
{% endif %}
<meta name="tags" contents="{% for tag in page.tags %}{{ tag }}, {% endfor %}">
{% endblock %}
{% block title %}
{{ SITENAME }} &mdash; {{ page.title|striptags }}
{{ SITENAME }} &mdash; {{ page.title|striptags }}
{% endblock %}
{% block content %}
<div class="page">
<h1 class="title">{{ page.title }}</h1>
<div class="content">
{{ page.content }}
</div>
<div class="page">
<h1 class="title">{{ page.title }}</h1>
<div class="content">
{{ page.content }}
</div>
</div>
{% endblock %}