Merge pull request #7 from atodorov/subtitle

index.html: Show the <hr> and subheading only if SITESUBTITLE is defined
This commit is contained in:
Gilson Filho 2016-01-11 09:33:03 -03:00
commit 18d1f5b6b6
1 changed files with 4 additions and 2 deletions

View File

@ -13,8 +13,10 @@
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="page-heading">
<h1>{{ SITENAME }}</h1>
<hr class="small">
<span class="subheading">{{ SITESUBTITLE }}</span>
{% if SITESUBTITLE %}
<hr class="small">
<span class="subheading">{{ SITESUBTITLE }}</span>
{% endif %}
</div>
</div>
</div>