Merge pull request #8 from atodorov/add_tags_support

Add support for showing all posts under a single tag
This commit is contained in:
Gilson Filho 2016-01-11 09:32:45 -03:00
commit 8978bc4ea5
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 %}