server/views/base.twig

79 lines
No EOL
2.5 KiB
Twig

<!--
Site développé par Matthieu Bessat - lefuturiste -
Portfolio: https://lefuturiste.fr
Github: https://github.com/lefuturiste
-->
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width">
<link rel="icon" type="image/png" href="/static/imgs/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="/static/styles/main.css" />
{% if layout is not defined %}
<link rel="stylesheet" href="/static/styles/home.css" />
{% endif %}
{% block head %}{% endblock %}
<meta property="og:locale" content="fr">
</head>
<body>
<div class="up-footer">
{% 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="/static/imgs/espace_condorcet_logo.jpg" alt="Logo de l'Espace Condorcet Centre Social" />
</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 2020</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="">
<div class="container">
<div class="content">
{% block content %}{% endblock %}
</div>
</div>
</div>
{% else %}
{% block content %}{% endblock %}
{% endif %}
{% if isProposed is defined and isProposed == true %}
<div class="proposed-alert">
! Version proposée !
{# <div class="proposed-alert-content">
</div> #}
</div>
{% endif %}
</div>
<div class="sticky-footer">
{% block footer %}{% endblock %}
</div>
{% block scripts %}{% endblock %}
<script src="/static/scripts/main.js"></script>
</body>
</html>