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>
|
|
|
|
<html>
|
|
|
|
<head>
|
2020-07-15 20:32:42 +00:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<link rel="icon" type="image/png" href="/assets/img/favicon.png" />
|
|
|
|
|
|
|
|
<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">
|
|
|
|
<link rel="stylesheet" href="/assets/main.css" />
|
|
|
|
{% if layout is not defined %}
|
|
|
|
<link rel="stylesheet" href="/assets/home.css" />
|
|
|
|
{% endif %}
|
|
|
|
|
2020-07-11 22:42:00 +00:00
|
|
|
{% block head %}{% endblock %}
|
|
|
|
</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 href="/"><img src="/assets/img/espace_condorcet_logo.jpg" /></a>
|
|
|
|
</div>
|
|
|
|
<div class="header-content">
|
|
|
|
<a
|
|
|
|
href="https://www.espacecondorcet.org/"
|
|
|
|
class="header-sub-title">
|
|
|
|
Espace Condorcet Centre Social
|
|
|
|
</a>
|
|
|
|
<h1 class="header-title">Forum des associations</h1>
|
|
|
|
<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>
|
|
|
|
<div class="container">
|
|
|
|
<div class="content">
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</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é !
|
|
|
|
{# <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-07-11 22:42:00 +00:00
|
|
|
</body>
|
|
|
|
</html>
|