diff options
Diffstat (limited to 'themes/simple/templates')
| -rw-r--r-- | themes/simple/templates/base.html | 12 | ||||
| -rw-r--r-- | themes/simple/templates/category.html | 3 | ||||
| -rw-r--r-- | themes/simple/templates/index.html | 7 |
3 files changed, 8 insertions, 14 deletions
diff --git a/themes/simple/templates/base.html b/themes/simple/templates/base.html index 1667620..7ed67fe 100644 --- a/themes/simple/templates/base.html +++ b/themes/simple/templates/base.html @@ -91,15 +91,15 @@ </div> </aside> <main> - {% block content %} - {% endblock content %} + <div id="content" > + {% block content %} + {% endblock content %} + </div> </main> </div> - <footer> + <footer id="footer"> {% block footer %} - <address> - Made with <a rel="nofollow" href="https://getpelican.com/">Pelican</a>, - </address> + <p>© 2026 Daniel Hader {% endblock footer %} </footer> </div> diff --git a/themes/simple/templates/category.html b/themes/simple/templates/category.html index bfad391..f546bbb 100644 --- a/themes/simple/templates/category.html +++ b/themes/simple/templates/category.html @@ -3,5 +3,6 @@ {% block title %}{{ SITENAME|striptags }} - {{ category }} category{% endblock %} {% block content_title %} - <h2>Articles in the {{ category }} category</h2> +<h2>Stuff I've written about {{ category }}</h2> +<hr> {% endblock %} diff --git a/themes/simple/templates/index.html b/themes/simple/templates/index.html index 100a720..98e705e 100644 --- a/themes/simple/templates/index.html +++ b/themes/simple/templates/index.html @@ -11,13 +11,6 @@ <section>{{ article.summary }}</section> <footer> <p>Published: <time datetime="{{ article.date.isoformat() }}"> {{ article.locale_date }} </time></p> - {%- if article.authors %} - <address>By - {% for author in article.authors %} - <a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> - {% endfor %} - </address> - {%- endif %} </footer> </article> {% endfor %} |
