commit fc5835a435df96364ce2302e42d3ea40b3176217 parent 85c073dc5208d7b535ae1a60216d4c8ab1d36475 Author: sej <sej@sejdt.localhost> Date: Mon, 30 Sep 2024 20:02:07 +0200 Added support for byline in the templates to include information on author and license information. Diffstat:
M | templates/base.html | | | 5 | ++--- |
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/templates/base.html b/templates/base.html @@ -26,12 +26,11 @@ {% endblock %} </body> <footer> - <p>Author: sej + <p> {% for l in links %} | <a href="{{ l['link'] }}">{{ l['text'] }}</a> {% endfor %} </p> - - <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>. + <p>{{ byline }}</p> </footer> </html>