diff options
author | Wojtek Kosior <koszko@koszko.org> | 2021-11-17 17:31:35 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2021-11-17 17:31:35 +0100 |
commit | c6e5d1ece9c9ddf738e4124135f33651c94baa7c (patch) | |
tree | a3407dbcfe51ac291ed14ef48e73be7902100428 /src/pydrilla/templates/base.html | |
parent | c00ed7f9ef28f6aee946e168a535d7f637fe46ae (diff) | |
download | haketilo-hydrilla-c6e5d1ece9c9ddf738e4124135f33651c94baa7c.tar.gz haketilo-hydrilla-c6e5d1ece9c9ddf738e4124135f33651c94baa7c.zip |
add link to software sources to ease compliance with AGPL
Diffstat (limited to 'src/pydrilla/templates/base.html')
-rw-r--r-- | src/pydrilla/templates/base.html | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/src/pydrilla/templates/base.html b/src/pydrilla/templates/base.html index 6e7887e..7b26b64 100644 --- a/src/pydrilla/templates/base.html +++ b/src/pydrilla/templates/base.html @@ -75,6 +75,24 @@ in a proprietary program, I am not going to enforce this in court. font-size: 1.5em; padding: 0.5em; } + + .content { + margin: auto; + margin-top: 2em; + margin-bottom: 2em; + max-width: 700px; + padding-left: 1em; + padding-right: 1em; + border-left: 1px #999 solid; + border-right: 1px #999 solid; + } + + .footer { + font-size: 0.8em; + padding: 1em; + border-top: 1px #777 solid; + text-align: center; + } {% endblock %} </style> <title>{% block title %}{{ _('hydrilla') }}{% endblock %}</title> @@ -87,8 +105,18 @@ in a proprietary program, I am not going to enforce this in court. class="home_link" {% endcall %} </div> - {% block content %} - {% endblock %} + + <div class="content"> + {% block content %} + {% endblock %} + </div> + + <div class="footer"> + Copyright © Wojtek Kosior. + <br> + This page was generated by Hydrilla which is free/libre software. + You can get a copy <a href="{{ hydrilla_sources_uri|e }}">here</a>. + </div> {% endblock %} </body> </html> |