Move legal footer in separated file

This commit is contained in:
HugoNeveux 2020-04-22 13:02:31 +02:00
parent 8d7837b890
commit 7838804ad0
4 changed files with 4 additions and 3 deletions

Binary file not shown.

View File

@ -50,9 +50,6 @@
</main> </main>
<footer class="container">
<p>&copy; Louis Chauvet 2019</p>
</footer>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script> crossorigin="anonymous"></script>

View File

@ -26,5 +26,6 @@
{% endblock navbar %} {% endblock navbar %}
{% block body %} {% block body %}
{% endblock %} {% endblock %}
{% include "base/legal.html" %}
</body> </body>
</html> </html>

View File

@ -0,0 +1,3 @@
<footer class="container">
<p>&copy; Louis Chauvet 2019</p>
</footer>