diff options
author | Andrew Godwin | 2022-12-05 19:21:00 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-12-05 19:24:46 -0700 |
commit | a31f676b46a4d904954b8b7227dcde779aedca54 (patch) | |
tree | d00fa3e022ff08f154f431777ba37e2f43127fd6 /templates/base.html | |
parent | da9a3d853eda1173ac8913908d512fb9babbd136 (diff) | |
download | takahe-a31f676b46a4d904954b8b7227dcde779aedca54.tar.gz takahe-a31f676b46a4d904954b8b7227dcde779aedca54.tar.bz2 takahe-a31f676b46a4d904954b8b7227dcde779aedca54.zip |
Policy pages and signup tests.
Fixes #113
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index 2fd92bf..b30e38f 100644 --- a/templates/base.html +++ b/templates/base.html @@ -75,7 +75,11 @@ </main> <footer> - <span>Powered by <a href="https://jointakahe.org">Takahē {{ config.version }}</a></span> + {% if config.site_about %}<a href="{% url "about" %}">About</a>{% endif %} + {% if config.policy_rules %}<a href="{% url "rules" %}">Server Rules</a>{% endif %} + {% if config.policy_terms %}<a href="{% url "terms" %}">Terms of Service</a>{% endif %} + {% if config.policy_privacy %}<a href="{% url "privacy" %}">Privacy Policy</a>{% endif %} + <a href="https://jointakahe.org">Takahē {{ config.version }}</a> </footer> </body> |