forked from WeLoveSpeed/welovespeed.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
writeups-items.html
60 lines (49 loc) · 2.21 KB
/
writeups-items.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
55
56
57
58
59
60
{% for writeup in include.writeups %}
{% comment %} La base : l'url.
Tout le reste autour, c'est de la déco si c'est dispo.
Exemples de rendu possibles, suivant les infos dispo :
<li>
<a href="https://domain.com/article">https://domain.com/article</a>
</li>
<li>
« <a href="https://domain.com/article">Titre article</a> », Auteur(s)
</li>
<li>
<blockquote>
Lorem ipsum sit dolor amet.<br>
<cite>« <a href="https://domain.com/article">Titre article</a> », Auteur(s) – <a href="http://domain.com/">Organisation</a></cite>
</blockquote>
</li>
{% endcomment %}
{% capture markup %}{{ writeup.url }}{% endcapture %}
{% comment %} Si on a le title, on l'utilise. {% endcomment %}
{% if writeup.title %}
{% capture markup %}
« <a href="{{ markup }}"{% if writeup.locale and include.locale != writeup.locale %}lang="{{ writeup.locale | slice: 0,2 }}"{% endif %}>{{ writeup.title }}</a> »
{% endcapture %}
{% else %}
{% capture markup %}<a href="{{ markup }}">{{ markup }}</a>{% endcapture %}
{% endif %}
{% comment %} Si on a des auteurs, on les précise {% endcomment %}
{% if writeup.authors %}
{% capture markup %}{{ markup }}, {{ writeup.authors | join: ', ' }}{% endcapture %}
{% endif %}
{% comment %} Si ça vient d'une organisation, on le précise {% endcomment %}
{% if writeup.from and writeup.from.name %}
{% capture organization %}{{ writeup.from.name }}{% endcapture %}
{% if writeup.from.url %}
{% capture organization %}<a href="{{ writeup.from.url }}">{{ organization }}</a>{% endcapture %}
{% endif %}
{% capture markup %}{{ markup }} – {{ organization }}{% endcapture %}
{% endif %}
{% comment %} Si on a un extrait, on décore avec un `blockquote` et un `cite` {% endcomment %}
{% if writeup.extract %}
{% capture markup %}
<blockquote{% if writeup.locale and include.locale != writeup.locale %} lang="{{ writeup.locale | slice: 0,2 }}" class="other-lang"{% endif %}>
<p>{{ writeup.extract }}</p>
<cite>{{ markup }}</cite>
</blockquote>
{% endcapture %}
{% endif %}
<li>{{ markup }}</li>
{% endfor%}