diff --git a/README.md b/README.md index 519b233..4b400e7 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,6 @@ _pas sur si panash est plus à jour que mon site..._ Dans les trucs (auquel je pense) à faire, il y a : - intégrer une lecture par « tag » -- ajouter la notion de « tag » au article existant - gérer les redirections - modifier les url pour utiliser les année/mois/jour comme arborescence - avoir un index (automatique ?) pour les repertoires année, mois et jour diff --git a/agenda.md b/agenda.md index 5581e5f..a65ce7e 100644 --- a/agenda.md +++ b/agenda.md @@ -9,6 +9,7 @@ - jeudi 13 17h réunion pédago descodeuses - vendredi 14 février 2020 10:00 – 11:00 Entretien Acheteur CSF - vendredi 14 février 14h Andy visio +- samedi 15 RCT --- - mardi 15h amadou ? - jeudi 20 février retour avec #1, #2 et #3 de 6-fours diff --git a/content/bidules/index.html b/content/bidules/index.html index 37c2256..da730cb 100644 --- a/content/bidules/index.html +++ b/content/bidules/index.html @@ -26,6 +26,10 @@
  • accueil
  • + diff --git a/content/boite-a-idee/index.html b/content/boite-a-idee/index.html index 7c05f51..b1677ea 100644 --- a/content/boite-a-idee/index.html +++ b/content/boite-a-idee/index.html @@ -148,6 +148,10 @@
  • Permaculture : le guide pour bien débuter : Jardiner en imitant la nature

  • + diff --git a/content/feed.xml b/content/feed.xml index 371d5a5..cdc81fb 100644 --- a/content/feed.xml +++ b/content/feed.xml @@ -5,7 +5,7 @@ les dernières mise à jour du site tag:elsif.fr - Wed, 12 Feb 2020 00:45:00 +0100 + Wed, 12 Feb 2020 08:33:47 +0100 <a class="top header-title" href="../../index.html">Les pieds dans le code</a> diff --git a/content/index.html b/content/index.html index 0761158..89d88e9 100644 --- a/content/index.html +++ b/content/index.html @@ -34,6 +34,12 @@ </div> </div> </main> + <footer> + <ul> + <li><a href="/truc">truc</a></li> + <li><a href="/bidules">bidules</a></li> + </ul> + </footer> </body> </html> diff --git a/content/posts/index.html b/content/posts/index.html index 48cf41e..3a3c146 100644 --- a/content/posts/index.html +++ b/content/posts/index.html @@ -535,6 +535,10 @@ <li>01 Mar 2006 » <a href="/posts/2006/2006-03-01-trinity-rescue-a-laide/">Trinity rescue : A l'aide !</a></li> </ul> </main> + <footer> + <ul> + </ul> + </footer> </body> </html> diff --git a/content/truc/index.html b/content/truc/index.html index 37c2256..da730cb 100644 --- a/content/truc/index.html +++ b/content/truc/index.html @@ -26,6 +26,10 @@ <li><a href="/">accueil</a></li> </ul> </main> + <footer> + <ul> + </ul> + </footer> </body> </html> diff --git a/lib/template.html b/lib/template.html index 132e19a..e178a48 100644 --- a/lib/template.html +++ b/lib/template.html @@ -24,6 +24,13 @@ <main> $body$ </main> + <footer> + <ul> + $for(keywords)$ + <li><a href="/$keywords$">$keywords$</a></li> + $endfor$ + </ul> + </footer> </body> </html>