Indent jinja code blocks, allow editors to collapse regions

main
Raymond Wanyoike 2017-11-21 11:17:33 +03:00
parent 4aee394acb
commit 75a023e04c
16 changed files with 253 additions and 249 deletions

View File

@ -1,18 +1,18 @@
{% extends "base.html" %}
{% block title %}
Archives {{ super() }}
Archives {{ super() }}
{% endblock %}
{% block page_header %}
Archives
Archives
{% endblock %}
{% block content %}
<dl class="row">
{% for article in dates %}
<dt class="col-sm-4">{{ article.locale_date }}</dt>
<dd class="col-sm-8"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
<dl class="row">
{% for article in dates %}
<dt class="col-sm-4">{{ article.locale_date }}</dt>
<dd class="col-sm-8"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}

View File

@ -1,51 +1,51 @@
{% extends "base.html" %}
{% block head %}
{{ super() }}
<meta name="description" content="{{ article.summary|striptags }}">
{{ super() }}
<meta name="description" content="{{ article.summary|striptags }}">
{% endblock %}
{% block title %}
{{ article.title|striptags }} {{ super() }}
{{ article.title|striptags }} {{ super() }}
{% endblock %}
{% block page_header %}
{{ article.title }}
{{ article.title }}
{% endblock %}
{% block content %}
<article class="article">
<header>
<ul class="list-inline">
<li class="list-inline-item text-muted" title="{{ article.date.isoformat() }}">
<i class="fa fa-clock-o"></i>
{{ article.locale_date }}
</li>
<li class="list-inline-item">
<i class="fa fa-folder-open-o"></i>
<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
</li>
{% if not HIDE_AUTHORS and article.authors %}
<li class="list-inline-item">
<i class="fa fa-user-o"></i>
{% for author in article.authors %}
<a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}
</li>
{% endif %}
{% if article.tags %}
<li class="list-inline-item">
<i class="fa fa-files-o"></i>
{% for tag in article.tags %}
<a href="{{ SITEURL }}/{{ tag.url }}">#{{ tag }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}
</li>
{% endif %}
</ul>
</header>
<div class="content">
{{ article.content }}
</div>
</article>
{% include 'include/comments.html' %}
<article class="article">
<header>
<ul class="list-inline">
<li class="list-inline-item text-muted" title="{{ article.date.isoformat() }}">
<i class="fa fa-clock-o"></i>
{{ article.locale_date }}
</li>
<li class="list-inline-item">
<i class="fa fa-folder-open-o"></i>
<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
</li>
{% if not HIDE_AUTHORS and article.authors %}
<li class="list-inline-item">
<i class="fa fa-user-o"></i>
{% for author in article.authors %}
<a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}
</li>
{% endif %}
{% if article.tags %}
<li class="list-inline-item">
<i class="fa fa-files-o"></i>
{% for tag in article.tags %}
<a href="{{ SITEURL }}/{{ tag.url }}">#{{ tag }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}
</li>
{% endif %}
</ul>
</header>
<div class="content">
{{ article.content }}
</div>
</article>
{% include 'include/comments.html' %}
{% endblock %}

View File

@ -1,9 +1,9 @@
{% extends "index.html" %}
{% block title %}
{{ author }} Articles | {{ SITENAME }}
{{ author }} Articles | {{ SITENAME }}
{% endblock %}
{% block page_header %}
{{ author }} Articles
{{ author }} Articles
{% endblock %}

View File

@ -1,20 +1,20 @@
{% extends "base.html" %}
{% block title %}
Authors {{ super() }}
Authors {{ super() }}
{% endblock %}
{% block page_header %}
Authors
Authors
{% endblock %}
{% block content %}
<table class="table table-bordered table-striped table-hover">
{% for author, articles in authors|sort %}
<tr>
<td><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a></td>
<td>{{ articles|count }}</td>
</tr>
{% endfor %}
</table>
<table class="table table-bordered table-striped">
{% for author, articles in authors|sort %}
<tr>
<td><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a></td>
<td>{{ articles|count }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}

View File

@ -11,11 +11,11 @@
<link rel="canonical" href="{{ SITEURL }}/{{ output_file }}">
{% if RFG_FAVICONS %}
<link rel="apple-touch-icon" href="{{ SITEURL }}/apple-touch-icon.png" sizes="180x180">
<link rel="icon" type="image/png" href="{{ SITEURL }}/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="{{ SITEURL }}/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="{{ SITEURL }}/manifest.json">
<meta name="theme-color" content="#333333">
<link rel="apple-touch-icon" href="{{ SITEURL }}/apple-touch-icon.png" sizes="180x180">
<link rel="icon" type="image/png" href="{{ SITEURL }}/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="{{ SITEURL }}/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="{{ SITEURL }}/manifest.json">
<meta name="theme-color" content="#333333">
{% endif %}
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/bootstrap.min.css">

View File

@ -1,20 +1,20 @@
{% extends "base.html" %}
{% block title %}
Categories {{ super() }}
Categories {{ super() }}
{% endblock %}
{% block page_header %}
Categories
Categories
{% endblock %}
{% block content %}
<table class="table table-bordered table-striped table-hover">
{% for category, articles in categories|sort %}
<tr>
<td><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></td>
<td>{{ articles|count }}</td>
</tr>
{% endfor %}
</table>
<table class="table table-bordered table-striped">
{% for category, articles in categories|sort %}
<tr>
<td><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a></td>
<td>{{ articles|count }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}

View File

@ -1,9 +1,9 @@
{% extends "index.html" %}
{% block title %}
{{ category }} Articles | {{ SITENAME }}
{{ category }} Articles | {{ SITENAME }}
{% endblock %}
{% block page_header %}
{{ category }} Articles
{{ category }} Articles
{% endblock %}

View File

@ -1,51 +1,53 @@
{% if GOOGLE_ANALYTICS %}
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o);
a.async = 1;
a.src = g;
m = s.getElementsByTagName(o)[0];
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', '{{ GOOGLE_ANALYTICS }}', 'auto');
ga('send', 'pageview');
</script>
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o);
a.async = 1;
a.src = g;
m = s.getElementsByTagName(o)[0];
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', '{{ GOOGLE_ANALYTICS }}', 'auto');
ga('send', 'pageview');
</script>
{% endif %}
{% if GAUGES %}
<script>
var _gauges = _gauges || [];
(function() {
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '{{ GAUGES }}');
t.src = 'https://secure.gaug.es/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
</script>
<script>
var _gauges = _gauges || [];
(function() {
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '{{ GAUGES }}');
t.src = 'https://secure.gaug.es/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
</script>
{% endif %}
{% if PIWIK_URL and PIWIK_SITE_ID %}
<script>
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u = '{{ PIWIK_URL }}/';
_paq.push(['setTrackerUrl', u + 'piwik.php']);
_paq.push(['setSiteId', '{{ PIWIK_SITE_ID }}']);
var g = document.createElement('script');
g.type = 'text/javascript';
g.async = true;
g.defer = true;
g.src = u + 'piwik.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(g, s);
})();
</script>
<script>
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u = '{{ PIWIK_URL }}/';
_paq.push(['setTrackerUrl', u + 'piwik.php']);
_paq.push(['setSiteId', '{{ PIWIK_SITE_ID }}']);
var g = document.createElement('script');
g.type = 'text/javascript';
g.async = true;
g.defer = true;
g.src = u + 'piwik.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(g, s);
})();
</script>
{% endif %}

View File

@ -1,20 +1,20 @@
{% if DISQUS_SITENAME %}
<hr>
<div id="disqus_thread"></div>
<script>
var disqus_config = function() {
this.page.url = '{{ SITEURL }}/{{ output_file }}';
this.page.identifier = '{{ article.slug }}';
};
(function() {
var d = document;
var s = d.createElement('script');
s.src = '//{{ DISQUS_SITENAME }}.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript class="text-muted">
Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a>
</noscript>
<hr>
<div id="disqus_thread"></div>
<script>
var disqus_config = function() {
this.page.url = '{{ SITEURL }}/{{ output_file }}';
this.page.identifier = '{{ article.slug }}';
};
(function() {
var d = document;
var s = d.createElement('script');
s.src = '//{{ DISQUS_SITENAME }}.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript class="text-muted">
Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a>
</noscript>
{% endif %}

View File

@ -1,24 +1,24 @@
{% if articles_paginator.num_pages > 1 %}
<hr>
<ul class="pagination">
{% if articles_page.has_previous() %}
<li class="page-item">
<a class="page-link" href="{{ SITEURL }}/{{ articles_previous_page.url }}">
<span aria-hidden="true">&laquo;</span>
<span class="sr-only">Previous</span>
</a>
</li>
{% endif %}
<li class="page-item disabled">
<span class="page-link">{{ articles_page.number }} of {{ articles_paginator.num_pages }}</span>
</li>
{% if articles_page.has_next() %}
<li class="page-item">
<a class="page-link" href="{{ SITEURL }}/{{ articles_next_page.url }}">
<span aria-hidden="true">&raquo;</span>
<span class="sr-only">Next</span>
</a>
</li>
{% endif %}
</ul>
<hr>
<ul class="pagination">
{% if articles_page.has_previous() %}
<li class="page-item">
<a class="page-link" href="{{ SITEURL }}/{{ articles_previous_page.url }}">
<span aria-hidden="true">&laquo;</span>
<span class="sr-only">Previous</span>
</a>
</li>
{% endif %}
<li class="page-item disabled">
<span class="page-link">{{ articles_page.number }} of {{ articles_paginator.num_pages }}</span>
</li>
{% if articles_page.has_next() %}
<li class="page-item">
<a class="page-link" href="{{ SITEURL }}/{{ articles_next_page.url }}">
<span aria-hidden="true">&raquo;</span>
<span class="sr-only">Next</span>
</a>
</li>
{% endif %}
</ul>
{% endif %}

View File

@ -1,53 +1,55 @@
{% extends "base.html" %}
{% block head %}
{{ super() }}
{% if DESCRIPTION %}
<meta name="description" content="{{ DESCRIPTION|striptags }}">
{% endif %}
{{ super() }}
{% if DESCRIPTION %}
<meta name="description" content="{{ DESCRIPTION|striptags }}">
{% endif %}
{% endblock %}
{% block title %}
{{ SITENAME }} | {{ SITESUBTITLE }}
{{ SITENAME }} | {{ SITESUBTITLE }}
{% endblock %}
{% block page_header %}
Articles
Articles
{% endblock %}
{% block content %}
{% for article in articles_page.object_list %}
<article class="row teaser">
<header class="col-sm-4 text-muted">
<ul>
<li title="{{ article.date.isoformat() }}">
<i class="fa fa-clock-o"></i>
{{ article.locale_date }}
</li>
<li>
<i class="fa fa-folder-open-o"></i>
<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
</li>
{% if not HIDE_AUTHORS and article.authors %}
<li>
<i class="fa fa-user-o"></i>
{% for author in article.authors %}
<a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}
</li>
{% endif %}
</ul>
</header>
<div class="col-sm-8">
<h4 class="title"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h4>
<div class="content">
{{ article.summary|striptags }}
</div>
</div>
</article>
{% if not loop.last %}
<hr>
{% endif %}
{% endfor %}
{% include 'include/pagination.html' %}
{% for article in articles_page.object_list %}
<article class="row teaser">
<header class="col-sm-4 text-muted">
<ul>
<li title="{{ article.date.isoformat() }}">
<i class="fa fa-clock-o"></i>
{{ article.locale_date }}
</li>
<li>
<i class="fa fa-folder-open-o"></i>
<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
</li>
{% if not HIDE_AUTHORS and article.authors %}
<li>
<i class="fa fa-user-o"></i>
{% for author in article.authors %}
<a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}
</li>
{% endif %}
</ul>
</header>
<div class="col-sm-8">
<h4 class="title">
<a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
</h4>
<div class="content">
{{ article.summary|striptags }}
</div>
</div>
</article>
{% if not loop.last %}
<hr>
{% endif %}
{% endfor %}
{% include 'include/pagination.html' %}
{% endblock %}

View File

@ -1,22 +1,22 @@
{% extends "base.html" %}
{% block head %}
{{ super() }}
<meta name="description" content="{{ page.summary|striptags }}">
{{ super() }}
<meta name="description" content="{{ page.summary|striptags }}">
{% endblock %}
{% block title %}
{{ page.title|striptags }} {{ super() }}
{{ page.title|striptags }} {{ super() }}
{% endblock %}
{% block page_header %}
{{ page.title }}
{{ page.title }}
{% endblock %}
{% block content %}
<article class="article">
<div class="content">
{{ page.content }}
</div>
</article>
<article class="article">
<div class="content">
{{ page.content }}
</div>
</article>
{% endblock %}

View File

@ -1,18 +1,18 @@
{% extends "base.html" %}
{% block title %}
Archives for {{ period | reverse | join(' ') }} {{ super() }}
Archives for {{ period | reverse | join(' ') }} {{ super() }}
{% endblock %}
{% block page_header %}
Archives for {{ period | reverse | join(' ') }}
Archives for {{ period | reverse | join(' ') }}
{% endblock %}
{% block content %}
<dl class="dl-horizontal">
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
<dl class="dl-horizontal">
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}

View File

@ -1,27 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for article in articles %}
<url>
<loc>{{ SITEURL }}/{{ article.url }}</loc>
<priority>0.8</priority>
</url>
{% for translation in article.translations %}
<url>
<loc>{{ SITEURL }}/{{ translation.url }}</loc>
<priority>0.8</priority>
</url>
{% endfor %}
<url>
<loc>{{ SITEURL }}/{{ article.url }}</loc>
<priority>0.8</priority>
</url>
{% for translation in article.translations %}
<url>
<loc>{{ SITEURL }}/{{ translation.url }}</loc>
<priority>0.8</priority>
</url>
{% endfor %}
{% endfor %}
{% for page in pages %}
<url>
<loc>{{ SITEURL }}/{{ page.url }}</loc>
<priority>1.0</priority>
</url>
{% for translation in page.translations %}
<url>
<loc>{{ SITEURL }}/{{ translation.url }}</loc>
<priority>1.0</priority>
</url>
{% endfor %}
<url>
<loc>{{ SITEURL }}/{{ page.url }}</loc>
<priority>1.0</priority>
</url>
{% for translation in page.translations %}
<url>
<loc>{{ SITEURL }}/{{ translation.url }}</loc>
<priority>1.0</priority>
</url>
{% endfor %}
{% endfor %}
</urlset>

View File

@ -1,9 +1,9 @@
{% extends "index.html" %}
{% block title %}
#{{ tag }} Articles | {{ SITENAME }}
#{{ tag }} Articles | {{ SITENAME }}
{% endblock %}
{% block page_header %}
#{{ tag }} Articles
#{{ tag }} Articles
{% endblock %}

View File

@ -1,20 +1,20 @@
{% extends "base.html" %}
{% block title %}
Tags {{ super() }}
Tags {{ super() }}
{% endblock %}
{% block page_header %}
Tags
Tags
{% endblock %}
{% block content %}
<table class="table table-bordered table-striped table-hover">
{% for tag, articles in tags|sort %}
<tr>
<td><a href="{{ SITEURL }}/{{ tag.url }}">#{{ tag }}</a></td>
<td>{{ articles|count }}</td>
</tr>
{% endfor %}
</table>
<table class="table table-bordered table-striped">
{% for tag, articles in tags|sort %}
<tr>
<td><a href="{{ SITEURL }}/{{ tag.url }}">#{{ tag }}</a></td>
<td>{{ articles|count }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}