forked from MartinLalanne/filestash-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
posts.fr.html
48 lines (45 loc) · 1.02 KB
/
posts.fr.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
38
39
40
41
42
43
44
45
46
47
48
---
title: Guides & Tools
layout: default
permalink: /fr/posts/
language: fr
---
{% include menu.html context="splash" %}
<div id="main" class="container no-anchor">
<style>
#main h2{
font-weight: normal!important;
display: inline-block!important;
margin: 0!important;
}
</style>
<section>
{% for post in site.posts %}
{% if post.date < site.time and post.language == "fr" %}
<div class="article">
<a href="{{ post.url }}">
<h2>{{ post.title }}</h2> <br><span class="timestamp">{{ post.date | date: "%b %Y" }}</span>
</a>
</div>
{% endif %}
{% endfor %}
</section>
<style>
section{
min-height: 400px;
}
#main section .article a {
font-size: 1.5em;
display: block;
text-decoration: none;
border-bottom: 1px solid #EEE;
padding: 20px 0px;
line-height: 20px;
}
#main section .article a .timestamp {
color: #aaa;
font-size: 0.8em;
}
</style>
</div>
{% include footer.html %}