-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 1.01 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
layout: default
title: {{ site.name }}
---
<div id="home">
{% assign pres = site.posts | where: 'categories', "presentation"%}
{% for post in pres %}
<h1>{{ post.title }}</h1>
<center><p>{{ post.content }}</p></center>
{% endfor %}
<h1>Les événements du jour </h1>
{% assign filtered_posts = site.posts | where: 'concern', "jeudi" | sort: date%}
<div class="billets">
{% for post in filtered_posts %}
<hr/>
<center><h2>{{ post.title }}</h2></center>
<center><p>{{ post.content }}</p></center>
{% endfor %}
<hr/>
</div>
{% assign planning = site.posts | where: 'categories', "planning" %}
{% for post in planning %}
<a href="{{ site.baseurl }}{{ post.url }}"><h1>{{ post.title }}</h1>
<p>{{ post.excerpt }}</p>
</a>
{% endfor %}
{% assign remerciements = site.posts | where: 'categories', "remerciements" %}
{% for post in remerciements %}
<h1>{{ post.title }}</h1>
<p>{{ post.content }}</p>
{% endfor %}
</div>