diff options
Diffstat (limited to 'Peli-Kiera/templates')
-rw-r--r-- | Peli-Kiera/templates/article.html | 4 | ||||
-rw-r--r-- | Peli-Kiera/templates/base.html | 6 |
2 files changed, 3 insertions, 7 deletions
diff --git a/Peli-Kiera/templates/article.html b/Peli-Kiera/templates/article.html index b5c4422..c9523a2 100644 --- a/Peli-Kiera/templates/article.html +++ b/Peli-Kiera/templates/article.html @@ -54,8 +54,6 @@ {% if article.next_article %} <div id="left-arrow"><i class="fa fa-chevron-circle-left"></i></div> <a href="{{ SITEURL }}/{{ article.next_article.url }}"> {{ article.next_article.title }}</a> - {% else %} - <a href="{{ SITEURL }}/{{ article.next_article.url }}">{{ " " }}</a> {% endif %} </div> </div> @@ -64,8 +62,6 @@ {% if article.prev_article %} <a href="{{ SITEURL }}/{{ article.prev_article.url }}">{{ article.prev_article.title }} </a> <div id="right-arrow"><i class="fa fa-chevron-circle-right"></i></div> - {% else %} - <a href="{{ SITEURL }}/{{ article.prev_article.url }}">{{ " " }}</a> {% endif %} </div> </div> diff --git a/Peli-Kiera/templates/base.html b/Peli-Kiera/templates/base.html index 737bd5c..ee680ab 100644 --- a/Peli-Kiera/templates/base.html +++ b/Peli-Kiera/templates/base.html @@ -72,9 +72,9 @@ {% endblock %} <footer> <h6> - Copyright © 2018 - {% if AUTHOR %}- {{ AUTHOR }}{% endif %} | Rendered by <a href="http://getpelican.com/">Pelican</a> | - Powered by <a href="http://python.org">Python</a> + Rendered by <a href="http://getpelican.com/">Pelican</a> • Theme by <a + href="https://github.com/aleylara/Peli-Kiera">Peli-Kiera</a> • Copyright + © {% if AUTHOR %} ‑ {{ AUTHOR }}{% endif %} </h6> </footer> </div> |