[Docs] Add "Fork me on GitHub" ribbon (#3306)

* docs: add "Fork me on GitHub" ribbon

* chore(changelog): add towncrier entry
This commit is contained in:
jack1142 2020-01-12 17:13:58 +01:00 committed by Michael H
parent b0b76c5a00
commit d2b9504c3b
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1 @@
Add "Fork me on GitHub" ribbon in top right corner of the docs page.

9
docs/_templates/layout.html vendored Normal file
View File

@ -0,0 +1,9 @@
{% extends '!layout.html' %}
{% block document %}
{{ super() }}
<a href="https://github.com/Cog-Creators/Red-DiscordBot">
<img style="position: absolute; top: 0; right: 0; border: 0;"
src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png?resize=149%2C149"
class="attachment-full size-full" alt="Fork me on GitHub">
</a>
{% endblock %}