-
Notifications
You must be signed in to change notification settings - Fork 0
/
making-of.html
31 lines (28 loc) · 1.03 KB
/
making-of.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
---
layout: "default.html"
title: "Making of"
description: "Dans cette série d'articles, je relate comment je construis ce site au fur et à mesure."
eleventyImport:
collections: ["making-of"]
---
<p>
Je tenterai de le faire évoluer en utilisant <a href="/glossaire/petits-pas" >la technique des petits pas</a>
C'est à dire : une chose à la fois.
En expliquant autant que je peux dans un langage clair ce que je fais et les raisons de mes actions.
</p>
<ul>
{% for making-of in collections.making-of %}
<li style="
display: flex;
border-bottom: darkgray dotted 1px;
justify-content: space-between;
padding: .2rem;">
<a href="{{making-of.url}}" style="text-decoration: none; flex-grow:1;">{{ making-of.data.title }}</a>
<time datetime="{{making-of.data.date}}" style="font-family: monospace;">
{{ making-of.data.date | toLocaleStringFrShort }}
</time>
</li>
{% endfor %}
</ul>
<hr/>
<a href="/TODO">Reflexions et prochaines évolutions possibles</a>