-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 1.95 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
layout: default
title: Tale du Jour
---
<head>
<link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
</head>
<section class="section--first section--frontpage">
<div class="section-title">
<div class="container">
<h1 class="textLogo textLogo--frontpage">
{{ site.name }}
</h1>
<div class="postMeta-wrapper postMeta-wrapper--frontpage">
<ul class="postMeta">
<li class="postMeta-tagline" style="color: #262626; padding-top: 10px; font-size: 17px;">
<a href="/about">{{ site.tagline }}</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="section--postsWrapper">
<div class="container">
<div class="blockGroup">
<ul class="blockGroup-list">
{% for post in site.posts %}
<li class="block">
<div class="postArticle-wrapper">
<article class="postArticle postArticle--short">
{% if post.image.feature %}
<a href="{{ post.url }}">
<div class="postArticle-image" style="background-image:url('{{ post.image.feature | prepend: site.baseurl_featured_thumbnail }}')">
</div>
</a>
{% else %}
<a href="{{ post.url }}">
<div class="postArticle-image" style="background-image:url('{{site.baseurl}}assets/images/logo-white.svg')">
</div>
</a>
{% endif %}
<center>
<a class="postArticle-title" href="{{ post.url }}" style="font-family: 'Oswald', sans-serif; font-size: 30px;">{{ post.title }}</a>
<a class="postArticle-title" href="{{ post.url }}" style="font-size: 18px; color: #737373;">{{ post.date | date_to_string }}</a>
</center>
</article>
</div>
</li>
{% endfor %}
</ul>
</div>
</div>
</section>