nasg/templates/Year.j2.html

58 lines
1.8 KiB
HTML
Raw Permalink Normal View History

2018-07-20 16:45:42 +01:00
{% extends "base.j2.html" %}
{% block lang %}{% endblock %}
2018-07-20 16:45:42 +01:00
{% block title %}{{ category.title }}{% endblock %}
{% block meta %}
<link rel="canonical" href="{{ category.url }}" />
<link rel="alternate" type="application/rss+xml" title="{{ category.title }} RSS feed" href="{{ category.feed }}{{ fnames.rss }}" />
<link rel="alternate" type="application/atom+xml" title="{{ category.title }} ATOM feed" href="{{ category.feed }}{{ fnames.atom }}" />
<link rel="alternate" type="application/json" title="{{ category.title }} JSON feed" href="{{ category.feed }}{{ fnames.json }}" />
<link rel="feed" title="{{ category.title}} feed" href="http://www.unmung.com/feed?feed={{ category.feed|urlencode }}" />
2018-07-20 16:45:42 +01:00
{% endblock %}
{% block pagination %}
{% if category.paginated %}
<div id="pagination">
<ol>
{% for y, url in category.years.items() %}
{% if (y == category.year) or (not category.year and loop.first) %}
<li>
<span>
{{ y }}
</span>
</li>
{% else %}
<li>
<a href="{{ url|relurl(baseurl) }}">
<strong>{{ y }}</strong>
</a>
</li>
{% endif %}
{% endfor %}
</ol>
</div>
{% endif %}
{% endblock %}
2018-07-20 16:45:42 +01:00
{% block content %}
<div id="main" class="h-feed hatom {{ category.name }}">
2018-07-20 16:45:42 +01:00
{% set year = [0] %}
{% for post in posts %}
{% set _year = year.pop() %}
{% if not category.paginated and _year != post.copyrightYear %}
{% if not loop.first %}
</div>
{% endif %}
<div class="year">
<h2>{{ post.copyrightYear }}</h2>
2018-07-20 16:45:42 +01:00
{% endif %}
{% set _ = year.append(post.copyrightYear)%}
{% include 'meta-article.j2.html' %}
{% if not category.paginated and loop.last %}
</div>
{% endif %}
2018-07-20 16:45:42 +01:00
{% endfor %}
</div>
2018-07-20 16:45:42 +01:00
{% endblock %}