Source code of my website
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿšš : move december 2025 now page and assets to archive

+37 -3
+3
content/now/archive/_index.md
··· 1 + --- 2 + title: "archive" 3 + ---
content/now/factorio-lyon.webp content/now/archive/december-2025/factorio-lyon.webp
content/now/factorio-montpelier.webp content/now/archive/december-2025/factorio-montpelier.webp
content/now/factorio-nantes.webp content/now/archive/december-2025/factorio-nantes.webp
+1 -3
content/now/index.md content/now/archive/december-2025/index.md
··· 1 1 --- 2 2 date: "2025-12-09" 3 3 language: fr 4 - aliases: 5 - - now 6 - title: "now" 4 + title: "now (Decembre 2025)" 7 5 --- 8 6 9 7 > Ce que je fais en ce moment, inspirรฉ par [nownownow.com](https://nownownow.com/about)
content/now/ps-bb3.webp content/now/archive/december-2025/ps-bb3.webp
content/now/ps-gt7.webp content/now/archive/december-2025/ps-gt7.webp
content/now/ps-pws2.webp content/now/archive/december-2025/ps-pws2.webp
content/now/spotify-wrapped-1.webp content/now/archive/december-2025/spotify-wrapped-1.webp
content/now/spotify-wrapped-2.webp content/now/archive/december-2025/spotify-wrapped-2.webp
+23
layouts/now/archive/list.html
··· 1 + {{ define "main" -}} 2 + <div class="post"> 3 + <h1 class="title">{{ .Title }}</h1> 4 + {{ .Content }} 5 + {{ if .Pages }} 6 + <ul class="entries"> 7 + {{ range .Pages.GroupByDate "2006" }} 8 + <h3 style="text-align: center;">{{ .Key }}</h3> 9 + {{ range .Pages }} 10 + <li> 11 + <span class="title"> 12 + <a href="{{ .RelPermalink }}">{{ .Title }}</a> 13 + </span> 14 + <span class="published"> 15 + <time class="pull-right post-list">{{ .Date | time.Format ":date_long" }}</time> 16 + </span> 17 + </li> 18 + {{ end }} 19 + {{ end }} 20 + </ul> 21 + {{ end }} 22 + </div> 23 + {{- end }}
+10
layouts/now/list.html
··· 1 + {{ define "main" -}} 2 + <div class="post"> 3 + <h1 class="title">{{ .Title }}</h1> 4 + {{ .Content }} 5 + 6 + <hr/> 7 + <i>Voir les anciennes versions dans l'<a href="/now/archive/">archive</a>.</i> 8 + 9 + </div> 10 + {{- end }}