server/views/base.twig

79 lines
2.5 KiB
Twig
Raw Normal View History

2020-07-18 10:43:13 +00:00
<!--
Site développé par Matthieu Bessat - lefuturiste -
Portfolio: https://lefuturiste.fr
Github: https://github.com/lefuturiste
-->
2020-07-11 22:42:00 +00:00
<!DOCTYPE html>
2020-09-01 18:53:49 +00:00
<html lang="fr">
2020-07-11 22:42:00 +00:00
<head>
2020-07-15 20:32:42 +00:00
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width">
2020-08-30 12:51:05 +00:00
<link rel="icon" type="image/png" href="/static/imgs/favicon.png" />
2020-07-15 20:32:42 +00:00
<title>{% block title %}{% endblock %} | Forum des associations 2020</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Slab&display=swap" rel="stylesheet">
2020-08-30 12:51:05 +00:00
<link rel="stylesheet" href="/static/styles/main.css" />
2020-07-15 20:32:42 +00:00
{% if layout is not defined %}
2020-08-30 12:51:05 +00:00
<link rel="stylesheet" href="/static/styles/home.css" />
2020-07-15 20:32:42 +00:00
{% endif %}
2020-07-11 22:42:00 +00:00
{% block head %}{% endblock %}
2020-08-11 09:38:29 +00:00
<meta property="og:locale" content="fr">
2020-07-11 22:42:00 +00:00
</head>
<body>
2020-07-19 13:26:57 +00:00
<div class="up-footer">
2020-07-15 20:32:42 +00:00
{% if layout is not defined %}
<div class="header">
<div class="container header-container">
<div class="header-left">
<div class="header-image">
<a class="header-home-link" href="/">
2020-09-01 18:53:49 +00:00
<img src="/static/imgs/espace_condorcet_logo.jpg" alt="Logo de l'Espace Condorcet Centre Social" />
</a>
2020-07-15 20:32:42 +00:00
</div>
<div class="header-content">
<a
href="https://www.espacecondorcet.org/"
class="header-sub-title">
Espace Condorcet Centre Social
</a>
2020-07-21 14:41:07 +00:00
<h1 class="header-title">Forum des associations 2020</h1>
2020-07-15 20:32:42 +00:00
<div class="header-description">
Cette année nous vous invitons à découvrir le forum virtuel des associations.
</div>
</div>
</div>
<div class="header-menu">
<a href="/mentions-legales">Mentions Légales</a>
<a href="/a-propos">A propos</a>
</div>
</div>
</div>
2020-08-17 14:32:02 +00:00
<div class="">
2020-08-17 10:25:10 +00:00
<div class="container">
<div class="content">
{% block content %}{% endblock %}
</div>
2020-07-15 20:32:42 +00:00
</div>
</div>
{% else %}
{% block content %}{% endblock %}
{% endif %}
2020-07-19 13:26:57 +00:00
{% if isProposed is defined and isProposed == true %}
<div class="proposed-alert">
! Version proposée !
2020-07-19 13:26:57 +00:00
{# <div class="proposed-alert-content">
</div> #}
</div>
{% endif %}
</div>
<div class="sticky-footer">
{% block footer %}{% endblock %}
</div>
2020-07-15 20:32:42 +00:00
{% block scripts %}{% endblock %}
2020-08-30 12:51:05 +00:00
<script src="/static/scripts/main.js"></script>
2020-07-11 22:42:00 +00:00
</body>
</html>