This commit is contained in:
2019-04-19 21:30:55 +03:00
commit 840267b63e
97 changed files with 12204 additions and 0 deletions
AUTHORS.mdCONTRIBUTING.mdEXAMPLES.mdLICENSEMakefileREADME.mdbabel.cfgmessages.pot
static
templates
translations

@ -0,0 +1,20 @@
{% extends "article_list.html" %}
{% block title %}{{ category }} - {{ SITENAME }}{% endblock %}
{% block meta %}
<meta name="author" content="{{ AUTHOR }}" />
<meta name="keywords" content="{{ category }}" />
{% endblock %}
{% block breadcrumbs %}
{% if DISPLAY_BREADCRUMBS %}
<ol class="breadcrumb">
<li>
<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category}}</a>
</li>
{% for subcategory in article.subcategories %}
<li>
<a href="{{ SITEURL }}/{{ subcategory.url }}">{{ subcategory.shortname }}</a>
</li>
{% endfor %}
</ol>
{% endif %}
{% endblock %}