Merge pull request #5 from atodorov/article_improvements

article.html imrovements
This commit is contained in:
Gilson Filho 2016-01-11 09:33:30 -03:00
commit 52f805521e
1 changed files with 9 additions and 0 deletions

View File

@ -1,4 +1,5 @@
{% extends "base.html" %}
{% block title %}{{ article.title }}{% endblock %}
{% block head %}
{{ super() }}
@ -32,6 +33,8 @@
<!-- Page Header -->
{% if article.header_cover %}
<header class="intro-header" style="background-image: url('{{ article.header_cover }}')">
{% elif 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/post-bg.jpg')">
{% endif %}
@ -64,6 +67,12 @@
{{ article.content }}
</article>
{% if article.tags %}
<div class="tags">
<p>tags: {% for tag in article.tags %}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag | escape }}</a>, {% endfor %}</p>
</div>
{% endif %}
<hr>
{% if DISQUS_SITENAME and SITEURL and article.status != "draft" %}