forked from ti-nuage/site
Reprise du style et de la première page.
Aussi, une nouvelle page décrit l'association, et sert d'introduction avant de proposer l'adhésion.
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
<body>
|
||||
<div class="Container">
|
||||
<menu>
|
||||
<li class="LogoContainer">
|
||||
<li class="container-logo">
|
||||
{% if not hidemenuicon %}
|
||||
<a href="/"><img class="logo-small" src="/images/logo.svg" alt=""></a>
|
||||
{% endif %}
|
||||
@@ -38,15 +38,17 @@
|
||||
{% block article %}{% endblock %}
|
||||
</div>
|
||||
|
||||
<footer class="footer mt192">
|
||||
<footer class="footer mt128">
|
||||
<div class="Container">
|
||||
<hr>
|
||||
<div class="Two-cols-One-row">
|
||||
<div>
|
||||
<h4>Ti Nuage</h4>
|
||||
<ul>
|
||||
<li><a href="/">Accueil</a></li>
|
||||
<li><a href="/blog">Blog</a></li>
|
||||
<li><a href="/services.html">Services</a></li>
|
||||
<li><a href="/association.html">L'association</a></li>
|
||||
<li><a href="/blog">Le blog</a></li>
|
||||
<li><a href="/services.html">Les services</a></li>
|
||||
<li><a href="/cgu.html">CGU</a></li>
|
||||
<li><a href="/mentions_legales.html">Mentions légales</a></li>
|
||||
</ul>
|
||||
|
||||
@@ -3,16 +3,11 @@
|
||||
{% block article %}
|
||||
{% block header %}{{ header | safe }}{% endblock %}
|
||||
<article>
|
||||
{% block content %}{{ contents | safe }}{% endblock %}
|
||||
{% set news = collections["archives"] %}
|
||||
<ul>
|
||||
{% for article in news %}
|
||||
<li>
|
||||
<p><a href="/{{ article.path }}">{{ moment(article.date).format('LL') }} | {{ article.title }}</a></p>
|
||||
{{ article.excerpt | safe }}
|
||||
</li>
|
||||
{% else %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% for article in collections["archives"] %}
|
||||
<h2><a href="/{{ article.path }}">{{ moment(article.date).format('LL') }} | {{ article.title }}</a></h2>
|
||||
{{ article.excerpt | safe }}
|
||||
<p><a href="/{{ article.path }}">Lire la suite...</a></p>
|
||||
{% else %}
|
||||
{% endfor %}
|
||||
</article>
|
||||
{% endblock %}
|
||||
|
||||
@@ -6,17 +6,13 @@
|
||||
{% block content %}{{ contents | safe }}{% endblock %}
|
||||
|
||||
<section class="Services">
|
||||
<h2 class="tac mt64">Actualités</h2>
|
||||
{% set news = collections["news"] %}
|
||||
<ul>
|
||||
{% for article in news %}
|
||||
<li>
|
||||
<p><a href="{{ article.path }}">{{ moment(article.date).format('LL') }} | {{article.title }}</a></p>
|
||||
{{ article.excerpt | safe }}
|
||||
</li>
|
||||
{% else %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<h2 class="tac mt128 mb64">Actualités</h2>
|
||||
{% for article in collections["news"] %}
|
||||
<h3><a href="{{ article.path }}">{{ moment(article.date).format('LL') }} | {{article.title }}</a></h3>
|
||||
{{ article.excerpt | safe }}
|
||||
<p><a href="{{ article.path }}">Lire la suite...</a></p>
|
||||
{% else %}
|
||||
{% endfor %}
|
||||
<div class="tac mt32">
|
||||
<a class="Button" href="/blog">Voir les archives</a>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user