minor changes

This commit is contained in:
eclipse 2025-03-16 17:22:42 +01:00
parent e71f5197df
commit 6a6a98fbec
3 changed files with 9 additions and 3 deletions

View File

@ -101,10 +101,10 @@
<li>ISSN: {{ p.issn }}</li>
{% endif %}
{% if p.read_it_full %}
<li><a href="{{ p.read_it_full }}">Volltext verfügbar</a></li>
<li><a href="{{ p.read_it_full }}" target="_blank">Volltext verfügbar</a></li>
{% endif %}
{% if p.read_it_partial %}
<li><a href="{{ p.read_it_partial }}">Leseprobe verfügbar</a></li>
<li><a href="{{ p.read_it_partial }}" target="_blank">Leseprobe verfügbar</a></li>
{% endif %}
{% if p.link and p.link_text %}
<li><a href="{{ p.link }}" target="_blank">{{ p.link_text }}</a></li>

View File

@ -28,4 +28,10 @@
</div>
{% endblock content_body %}
{% block content_footer %}
<footer class="content-footer">
<a href="/werke/">&larr; Werke</a>
</footer>
{% endblock content_footer %}
{% endblock content_all %}

View File

@ -1,4 +1,4 @@
<div class="container site-footer" >
{% set t = [ pages | map(attribute="modified") | list | max , articles | map(attribute="modified") | list | max ] | max %}
<p>{{ t.strftime("%Y") }} erstellt mit <a href="https://www.getpelican.com/" target="_blank">Pelican</a> und viel <span class="heart">&#9829;</span> von Tobias Radloff</p>
<p>{{ t.strftime("%Y") }} erstellt mit <a href="https://www.getpelican.com/" target="_blank">Pelican</a> und viel <span class="heart">&#9829;</span> von <a href="/ueber-mich/">Tobias Radloff</a></p>
</div>