Add support for showing all posts under a single tag

This commit is contained in:
Alexander Todorov 2015-11-26 00:48:45 +02:00
parent dd81fafa5f
commit dcc1b3436f
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{% extends "index.html" %}
{% block title %}{{ SITENAME }} - Tag {{ tag }}{% endblock %}
{% block header %}
{% if HEADER_COVER %}
<header class="intro-header" style="background-image: url('{{ HEADER_COVER }}')">
{% else %}
<header class="intro-header" style="background-image: url('{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/home-bg.jpg')">
{% endif %}
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="page-heading">
<h1>Tag {{ tag }}</h1>
</div>
</div>
</div>
</div>
</header>
{% endblock header %}