Compare commits
2 commits
22a2fe5df0
...
6cd9c0c841
Author | SHA1 | Date | |
---|---|---|---|
6cd9c0c841 | |||
5c99306f74 |
6 changed files with 17 additions and 4 deletions
|
@ -91,6 +91,7 @@ article.message {
|
||||||
color-mix(in hsl, var(--pico-primary-background) 10%, var(--pico-background-color)) 80%,
|
color-mix(in hsl, var(--pico-primary-background) 10%, var(--pico-background-color)) 80%,
|
||||||
var(--pico-background-color));
|
var(--pico-background-color));
|
||||||
display: grid;
|
display: grid;
|
||||||
|
grid-template-rows: 1fr min-content;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 4rem;
|
padding: 4rem;
|
||||||
|
|
||||||
|
@ -116,3 +117,8 @@ h6,
|
||||||
i.i {
|
i.i {
|
||||||
margin-right: .5em;
|
margin-right: .5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
text-align: center;
|
||||||
|
font-weight: 350;
|
||||||
|
}
|
||||||
|
|
|
@ -68,6 +68,9 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
</main>
|
</main>
|
||||||
|
<footer class="container">
|
||||||
|
{% include "footer.html" %}
|
||||||
|
</footer>
|
||||||
{% endblock body %}
|
{% endblock body %}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
1
base/templates/footer.html
Normal file
1
base/templates/footer.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
© <a href="https://edgarpierre.fr">Edgar P. Burkhart</a> – <a href="{% url "legal" %}">Mentions légales</a>
|
|
@ -1,10 +1,13 @@
|
||||||
{% load static %}
|
{% load static %}
|
||||||
<div id="hero">
|
<div id="hero">
|
||||||
<div>
|
<main>
|
||||||
<i class="ri-music-ai-fill big-logo"></i>
|
<i class="ri-music-ai-fill big-logo"></i>
|
||||||
<h1>Musik</h1>
|
<h1>Musik</h1>
|
||||||
<p>
|
<p>
|
||||||
<a href="{% url "login" %}" role="button"><i class="ri-play-fill"></i> Jouer</a>
|
<a href="{% url "login" %}" role="button"><i class="ri-play-fill"></i> Jouer</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</main>
|
||||||
|
<footer>
|
||||||
|
{% include "footer.html" %}
|
||||||
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,5 +7,5 @@ urlpatterns = [
|
||||||
path("", views.HomePageView.as_view(), name="index"),
|
path("", views.HomePageView.as_view(), name="index"),
|
||||||
path("accounts/signup/", views.SignupView.as_view(), name="signup"),
|
path("accounts/signup/", views.SignupView.as_view(), name="signup"),
|
||||||
path("accounts/", include("django.contrib.auth.urls")),
|
path("accounts/", include("django.contrib.auth.urls")),
|
||||||
path("legal/", TemplateView.as_view(template_name="privacy.html")),
|
path("legal/", TemplateView.as_view(template_name="privacy.html"), name="legal"),
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "musik"
|
name = "musik"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
description = "Le jeu de Musik."
|
description = "Le jeu de Musik."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue