This commit is contained in:
Neil Williams 2019-10-21 13:59:49 +00:00 committed by GitHub
commit c5af4dbd80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -16,6 +16,7 @@
{% block content %}
<article class="article">
<header>
{% if not HIDE_BANNER %}
<ul class="list-inline">
<li class="list-inline-item text-muted" title="{{ article.date.isoformat() }}">
<i class="fa fa-clock-o"></i>
@ -42,6 +43,7 @@
</li>
{% endif %}
</ul>
{% endif %}
</header>
<div class="content">
{{ article.content }}

View file

@ -3,11 +3,15 @@
{% if not HIDE_AUTHORS %}
<li class="list-inline-item"><a href="{{ SITEURL }}/authors.html">Authors</a></li>
{% endif %}
{% if not HIDE_ARCHIVES %}
<li class="list-inline-item"><a href="{{ SITEURL }}/archives.html">Archives</a></li>
{% endif %}
{% if not HIDE_CATEGORIES %}
<li class="list-inline-item"><a href="{{ SITEURL }}/categories.html">Categories</a></li>
{% if tags|length %}
<li class="list-inline-item"><a href="{{ SITEURL }}/tags.html">Tags</a></li>
{% endif %}
{% endif %}
</ul>
<p class="col-sm-6 text-sm-right text-muted">
Generated by <a href="https://github.com/getpelican/pelican" target="_blank">Pelican</a>