Init
This commit is contained in:
AUTHORS.mdCONTRIBUTING.mdEXAMPLES.mdLICENSEMakefileREADME.mdbabel.cfgmessages.pot
static
css
bootstrap.min.cssfont-awesome.min.csshtml4css1.cssnormalize.min.csstypogrify.css
pygments
style.cssthemes
litera
fonts
FontAwesome.otffontawesome-webfont.eotfontawesome-webfont.svgfontawesome-webfont.ttffontawesome-webfont.wofffontawesome-webfont.woff2glyphicons-halflings-regular.eotglyphicons-halflings-regular.svgglyphicons-halflings-regular.ttfglyphicons-halflings-regular.woffglyphicons-halflings-regular.woff2
js
tipuesearch
templates
archives.htmlarticle.htmlarticle_list.htmlauthor.htmlauthors.htmlbase.htmlcategories.htmlcategory.html
includes
aboutme.htmladdthis.htmlarticle_info.htmlbanner.htmlcc-license.htmlcomment_count.htmlcomments.htmldisqus_script.htmlfooter.htmlga.htmlliquid_tags_nb_footer.htmlliquid_tags_nb_header.htmlminify_tipuesearch.htmlpagination.htmlpiwik.htmlrelated-posts.htmlseries.htmlshow_source.htmlsidebar.html
index.htmlpage.htmlsearch.htmlsubcategory.htmltag.htmltags.htmlsidebar
archive.htmlarticle-li.htmlauthors.htmlcategories.htmlgithub-js.htmlgithub.htmlimages.htmllinks.htmlmacros.jinjarecent_posts.htmlseries.htmlshow_source.htmlsocial.htmltag_cloud.htmltwitter_timeline.html
taglist.htmltranslations.htmltwitter_cards.htmltranslations
ca
LC_MESSAGES
de
LC_MESSAGES
fr
LC_MESSAGES
ru
LC_MESSAGES
20
templates/subcategory.html
Normal file
20
templates/subcategory.html
Normal file
@ -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 %}
|
Reference in New Issue
Block a user