Add footer
This commit is contained in:
parent
f7d10df3d2
commit
078aeb3d3d
2 changed files with 27 additions and 0 deletions
|
@ -25,6 +25,8 @@
|
|||
|
||||
{% block content %}{% endblock %}
|
||||
|
||||
{% include 'common/footer.html' %}
|
||||
|
||||
<script type="text/javascript" src="{% static 'js/libs.js' %}"></script>
|
||||
<script type="text/javascript" src="{% static 'js/app.js' %}"></script>
|
||||
|
||||
|
|
25
templates/common/footer.html
Normal file
25
templates/common/footer.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<p class="social">
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-12 powered-by">
|
||||
<p>
|
||||
Powered by <a href="https://wagtail.io">Wagtail</a>
|
||||
and a whole heap of <a href="https://github.com/RealOrangeOne/theorangeone.net">Magic</a>!
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<a href="https://circleci.com/gh/RealOrangeOne/theorangeone.net">
|
||||
<img class="ci-badge" src="https://circleci.com/gh/RealOrangeOne/theorangeone.net.svg?style=svg" alt="CI Badge" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
Reference in a new issue