cr.html
1.32 KB
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
---
layout: default
---
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
<div class="page-nav">
<span>
{% if page.next.url %}
<a class="next" href="{{page.next.url}}">« {% include date.html date=page.next.date %}</a>
{% endif %}
</span>
<span class="prev">
{% if page.previous.url %}
<a href="{{page.previous.url}}">{% include date.html date=page.previous.date %} »</a>
{% endif %}
</span>
</div>
<header class="post-header">
{% if page.tags contains 'ci' %}
<img class="post-logo" alt="Logo du Club Info" src="{{ "/assets/logo-ci-inv.svg" | relative_url }}"/>
{% endif %}
<h1 class="post-title" itemprop="name headline">
{{ page.title | escape }}<br/>
du
<time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
{% include date.html date=page.date %}
</time>
</h1>
{% if page.author %}
<p class="post-meta">
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name">{{ page.author }}</span>
</span>
</p>
{% endif %}
</header>
<div class="post-content" itemprop="articleBody">
{{ content }}
</div>
{% if site.disqus.shortname %}
{% include disqus_comments.html %}
{% endif %}
</article>