First commit
This commit is contained in:
commit
440f5a7df4
1563 changed files with 217996 additions and 0 deletions
95
templates/layout.html
Normal file
95
templates/layout.html
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
{% load static %}
|
||||
<link rel="stylesheet" href="{% static 'css/design.css' %}">
|
||||
<link rel="stylesheet" href="{% static 'css/profile.css' %}">
|
||||
<link rel="stylesheet" href="{% static 'css/forms.css' %}">
|
||||
<link rel="stylesheet" href="{% static 'css/tabs.css' %}">
|
||||
<link rel="stylesheet" href="{% static 'css/utils.css' %}">
|
||||
<link rel="stylesheet" href="/static/css/colors_dark.css">
|
||||
<link rel="stylesheet" href="{% static 'highlight/styles/agate.min.css' %}">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||||
<link rel="shortcut icon" type="image/x-icon" href="{% static 'favicon.ico' %}">
|
||||
<!-- <script src="{% static 'js/night_day.js' %}" defer></script> -->
|
||||
<script src="{% static 'js/functions.js' %}" defer></script>
|
||||
<script src="{% static 'highlight/highlight.min.js' %}"></script>
|
||||
<script defer>hljs.highlightAll();</script>
|
||||
<title>PartirDeZero</title>
|
||||
</head>
|
||||
<body>
|
||||
{% block header %}
|
||||
{% include "partials/_header.html" %}
|
||||
{% endblock %}
|
||||
<!-- Guirlande de Noël SVG -->
|
||||
<svg width="100%" height="200px" viewBox="0 0 1000 200" xmlns="http://www.w3.org/2000/svg">
|
||||
<path id="wire" d="M0,100 Q250,200 500,100 T1000,100" stroke="black" stroke-width="2" fill="none" pathLength="100"/>
|
||||
<circle class="light" r="10" fill="red">
|
||||
<animateMotion repeatCount="indefinite" dur="0s">
|
||||
<mpath href="#wire"/>
|
||||
</animateMotion>
|
||||
</circle>
|
||||
<circle class="light" r="10" fill="green">
|
||||
<animateMotion repeatCount="indefinite" dur="0s" keyPoints="0.1;0.1" keyTimes="0;1">
|
||||
<mpath href="#wire"/>
|
||||
</animateMotion>
|
||||
</circle>
|
||||
<circle class="light" r="10" fill="blue">
|
||||
<animateMotion repeatCount="indefinite" dur="0s" keyPoints="0.2;0.2" keyTimes="0;1">
|
||||
<mpath href="#wire"/>
|
||||
</animateMotion>
|
||||
</circle>
|
||||
<circle class="light" r="10" fill="yellow">
|
||||
<animateMotion repeatCount="indefinite" dur="0s" keyPoints="0.3;0.3" keyTimes="0;1">
|
||||
<mpath href="#wire"/>
|
||||
</animateMotion>
|
||||
</circle>
|
||||
<circle class="light" r="10" fill="purple">
|
||||
<animateMotion repeatCount="indefinite" dur="0s" keyPoints="0.4;0.4" keyTimes="0;1">
|
||||
<mpath href="#wire"/>
|
||||
</animateMotion>
|
||||
</circle>
|
||||
<circle class="light" r="10" fill="red">
|
||||
<animateMotion repeatCount="indefinite" dur="0s" keyPoints="0.5;0.5" keyTimes="0;1">
|
||||
<mpath href="#wire"/>
|
||||
</animateMotion>
|
||||
</circle>
|
||||
<circle class="light" r="10" fill="green">
|
||||
<animateMotion repeatCount="indefinite" dur="0s" keyPoints="0.6;0.6" keyTimes="0;1">
|
||||
<mpath href="#wire"/>
|
||||
</animateMotion>
|
||||
</circle>
|
||||
<circle class="light" r="10" fill="blue">
|
||||
<animateMotion repeatCount="indefinite" dur="0s" keyPoints="0.7;0.7" keyTimes="0;1">
|
||||
<mpath href="#wire"/>
|
||||
</animateMotion>
|
||||
</circle>
|
||||
<circle class="light" r="10" fill="yellow">
|
||||
<animateMotion repeatCount="indefinite" dur="0s" keyPoints="0.8;0.8" keyTimes="0;1">
|
||||
<mpath href="#wire"/>
|
||||
</animateMotion>
|
||||
</circle>
|
||||
<circle class="light" r="10" fill="purple">
|
||||
<animateMotion repeatCount="indefinite" dur="0s" keyPoints="0.9;0.9" keyTimes="0;1">
|
||||
<mpath href="#wire"/>
|
||||
</animateMotion>
|
||||
</circle>
|
||||
</svg>
|
||||
<main>
|
||||
{% if messages %}
|
||||
<ul class="flash_messages">
|
||||
{% for message in messages %}
|
||||
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% block content %}{% endblock %}
|
||||
</main>
|
||||
|
||||
{% block footer %}
|
||||
{% include "partials/_footer.html" %}
|
||||
{% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue