Add footer logos for Gitea and Discord

This commit is contained in:
HugoNeveux 2020-05-05 23:09:34 +02:00
parent 20fbc9f732
commit 9ab5f95d72
2 changed files with 14 additions and 4 deletions

View File

@ -13,11 +13,11 @@
<link rel="shortcut icon" href="{% static 'favicon.ico' %}">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link href="https://use.fontawesome.com/releases/v5.0.4/css/all.css" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" rel="stylesheet">
{% block extra_css %}{% endblock extra_css %}
</head>
<body class="pt-5">
<body class="pt-5" style="display:flex; min-height: 100vh; flex-direction:column; justify-content: space-between;">
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<a class="navbar-brand" href="{% url 'front_page' %}">P.D.M.I</a>

View File

@ -1,4 +1,14 @@
<footer class="container">
<footer class="container pb-3">
<hr>
<p>&copy; Louis Chauvet 2019</p>
<div class="row">
<div class="col">
<p>&copy; Louis Chauvet 2020</p>
</div>
<div class="col text-right">
<a href="https://moriya.zapto.org/gitsokyo/PDBA">
<span class="fab fa-git-alt fa-2x" style="color: #f14e32; padding: 5px;"></span>
</a>
<a href="#"><span class="fab fa-discord fa-2x" style="color: #7289da; padding: 5px;"></span></a>
</div>
</div>
</footer>