diff options
author | 2018-03-17 07:00:18 -0600 | |
---|---|---|
committer | 2018-03-17 13:00:18 +0000 | |
commit | e6a23bb456e5b06b66b5a21908981543875bab8f (patch) | |
tree | f1ce24dbdf82be8180e14ce235de7609d741ae67 /templates | |
parent | @1mn pls (diff) |
Add a brief footer with a link to the repo (#37)
* add environment varibales to a .env file
specifically useful if using an IDE
maybe this also warrants an update of the wiki..
* add newline
* Add a brief footer with a link to the github rep
* Update README.md
* Update README.md
* Remove command line about running locally
* add styling for the footer
* rm config vars file
* use html bullet point code instead of literal
Diffstat (limited to 'templates')
-rw-r--r-- | templates/main/base.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/main/base.html b/templates/main/base.html index 43a06bfb..3ec130ad 100644 --- a/templates/main/base.html +++ b/templates/main/base.html @@ -37,5 +37,12 @@ {% endblock %} {% endif %} {% block content %}{% endblock %} +<footer> +<div class="uk-section uk-section-secondary uk-container-medium uk-text-meta"> + <div class="uk-text-center"> + <p>Developed collaboratively on <a href="https://github.com/discord-python/site">Github</a> • 2018</p> + </div> +</div> +</footer> </body> </html> |