From bf0b2384da2b45daad23d2f061c438b5012604b5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Th=C3=A9o?= <theo@le-filament.com>
Date: Thu, 21 Oct 2021 10:32:03 +0200
Subject: [PATCH] hugo repo creation

---
 .gitignore                                    |   1 +
 archetypes/default.md                         |   6 +
 config.toml                                   |  13 ++
 content/_index.md                             |  22 +++
 content/categories/_index.md                  |   3 +
 content/posts/_index.md                       |   3 +
 content/tags/_index.md                        |   3 +
 content/test.md                               | 180 ++++++++++++++++++
 themes/le_filament/LICENSE                    |  20 ++
 themes/le_filament/archetypes/default.md      |   2 +
 themes/le_filament/layouts/404.html           |   0
 .../le_filament/layouts/_default/baseof.html  |  11 ++
 themes/le_filament/layouts/_default/list.html |  17 ++
 .../le_filament/layouts/_default/single.html  |  30 +++
 .../le_filament/layouts/_default/terms.html   |  10 +
 .../layouts/categories/taxonomy.html          |  17 ++
 .../le_filament/layouts/categories/terms.html |  11 ++
 themes/le_filament/layouts/index.html         |   6 +
 .../le_filament/layouts/partials/footer.html  |  17 ++
 themes/le_filament/layouts/partials/head.html |  12 ++
 .../le_filament/layouts/partials/header.html  |  14 ++
 themes/le_filament/layouts/posts/posts.html   |  15 ++
 themes/le_filament/layouts/posts/single.html  |  30 +++
 themes/le_filament/layouts/tags/taxonomy.html |  17 ++
 themes/le_filament/layouts/tags/terms.html    |  11 ++
 themes/le_filament/static/css/style.css       | 168 ++++++++++++++++
 .../static/images/logo-mastodon.svg           |  30 +++
 .../le_filament/static/js/masto_comments.js   |  32 ++++
 themes/le_filament/theme.toml                 |  21 ++
 29 files changed, 722 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 archetypes/default.md
 create mode 100644 config.toml
 create mode 100644 content/_index.md
 create mode 100644 content/categories/_index.md
 create mode 100644 content/posts/_index.md
 create mode 100644 content/tags/_index.md
 create mode 100644 content/test.md
 create mode 100644 themes/le_filament/LICENSE
 create mode 100644 themes/le_filament/archetypes/default.md
 create mode 100644 themes/le_filament/layouts/404.html
 create mode 100644 themes/le_filament/layouts/_default/baseof.html
 create mode 100644 themes/le_filament/layouts/_default/list.html
 create mode 100644 themes/le_filament/layouts/_default/single.html
 create mode 100644 themes/le_filament/layouts/_default/terms.html
 create mode 100644 themes/le_filament/layouts/categories/taxonomy.html
 create mode 100644 themes/le_filament/layouts/categories/terms.html
 create mode 100644 themes/le_filament/layouts/index.html
 create mode 100644 themes/le_filament/layouts/partials/footer.html
 create mode 100644 themes/le_filament/layouts/partials/head.html
 create mode 100644 themes/le_filament/layouts/partials/header.html
 create mode 100644 themes/le_filament/layouts/posts/posts.html
 create mode 100644 themes/le_filament/layouts/posts/single.html
 create mode 100644 themes/le_filament/layouts/tags/taxonomy.html
 create mode 100644 themes/le_filament/layouts/tags/terms.html
 create mode 100644 themes/le_filament/static/css/style.css
 create mode 100644 themes/le_filament/static/images/logo-mastodon.svg
 create mode 100644 themes/le_filament/static/js/masto_comments.js
 create mode 100644 themes/le_filament/theme.toml

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..c75eecc
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/public
diff --git a/archetypes/default.md b/archetypes/default.md
new file mode 100644
index 0000000..00e77bd
--- /dev/null
+++ b/archetypes/default.md
@@ -0,0 +1,6 @@
+---
+title: "{{ replace .Name "-" " " | title }}"
+date: {{ .Date }}
+draft: true
+---
+
diff --git a/config.toml b/config.toml
new file mode 100644
index 0000000..71a9bf5
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,13 @@
+theme = "le_filament"
+
+[[menu.main]]
+    name = "Articles"
+    url = "/posts"
+
+[[menu.main]]
+    name = "Catégories"
+    url = "/categories"
+
+[[menu.main]]
+    name = "Étiquettes"
+    url = "/tags"
diff --git a/content/_index.md b/content/_index.md
new file mode 100644
index 0000000..3f62bce
--- /dev/null
+++ b/content/_index.md
@@ -0,0 +1,22 @@
+---
+title: Bienvenue sur le blog du Filament
+author: Rémi
+date: 2021-09-13T14:16:11+01:00
+draft: false
+---
+
+Bonjour et bienvenue sur le blog du Filament.
+L'idée de mettre en place un blog pour :
+- partager un certain nombre de nos actualités,
+- sensibiliser à des sujets qui nous sont chers,
+- vulgariser/expliquer les technos/outils que nous utilisons,
+- etc.
+
+nous trotte dans la tête depuis un certain moment mais nous n'avions pas franchi le pas. Si vous lisez ces lignes c'est que c'est chose faite, et que le plus dur reste à faire : alimenter ce blog régulièrement avec des articles de qualité.
+
+Vous devriez donc trouver parmi ces pages des articles sur :
+- le statut Scop que nous avons choisi, notre organisation du travail
+- les communautés auxquelles nous participons : le réseau des Scop, les acteurs de l'Économie Sociale et Solidaire, Odoo, les CHATONS, etc.
+- de la sensibilisation sur les logiciels libre, la protection des données
+- des points fonctionnels et leur application dans Odoo
+- des sujets plus techniques sur Docker, Ansible, Python, etc.
diff --git a/content/categories/_index.md b/content/categories/_index.md
new file mode 100644
index 0000000..e819e79
--- /dev/null
+++ b/content/categories/_index.md
@@ -0,0 +1,3 @@
+---
+title: "Catégories"
+---
diff --git a/content/posts/_index.md b/content/posts/_index.md
new file mode 100644
index 0000000..d0cf847
--- /dev/null
+++ b/content/posts/_index.md
@@ -0,0 +1,3 @@
+---
+title: Articles
+---
diff --git a/content/tags/_index.md b/content/tags/_index.md
new file mode 100644
index 0000000..0a966b7
--- /dev/null
+++ b/content/tags/_index.md
@@ -0,0 +1,3 @@
+---
+title: "Étiquettes"
+---
diff --git a/content/test.md b/content/test.md
new file mode 100644
index 0000000..a0373ef
--- /dev/null
+++ b/content/test.md
@@ -0,0 +1,180 @@
+---
+title: "Accueil"
+date: 2021-10-19T15:20:31+02:00
+draft: true
+---
+
+Test
+
+# <a name="top"></a>Markdown Test Page
+
+* [Headings](#Headings)
+* [Paragraphs](#Paragraphs)
+* [Blockquotes](#Blockquotes)
+* [Lists](#Lists)
+* [Horizontal rule](#Horizontal)
+* [Table](#Table)
+* [Code](#Code)
+* [Inline elements](#Inline)
+
+***
+
+# <a name="Headings"></a>Headings
+
+# Heading one
+
+Sint sit cillum pariatur eiusmod nulla pariatur ipsum. Sit laborum anim qui mollit tempor pariatur nisi minim dolor. Aliquip et adipisicing sit sit fugiat commodo id sunt. Nostrud enim ad commodo incididunt cupidatat in ullamco ullamco Lorem cupidatat velit enim et Lorem. Ut laborum cillum laboris fugiat culpa sint irure do reprehenderit culpa occaecat. Exercitation esse mollit tempor magna aliqua in occaecat aliquip veniam reprehenderit nisi dolor in laboris dolore velit.
+
+## Heading two
+
+Aute officia nulla deserunt do deserunt cillum velit magna. Officia veniam culpa anim minim dolore labore pariatur voluptate id ad est duis quis velit dolor pariatur enim. Incididunt enim excepteur do veniam consequat culpa do voluptate dolor fugiat ad adipisicing sit. Labore officia est adipisicing dolore proident eiusmod exercitation deserunt ullamco anim do occaecat velit. Elit dolor consectetur proident sunt aliquip est do tempor quis aliqua culpa aute. Duis in tempor exercitation pariatur et adipisicing mollit irure tempor ut enim esse commodo laboris proident. Do excepteur laborum anim esse aliquip eu sit id Lorem incididunt elit irure ea nulla dolor et. Nulla amet fugiat qui minim deserunt enim eu cupidatat aute officia do velit ea reprehenderit.
+
+### Heading three
+
+Voluptate cupidatat cillum elit quis ipsum eu voluptate fugiat consectetur enim. Quis ut voluptate culpa ex anim aute consectetur dolore proident voluptate exercitation eiusmod. Esse in do anim magna minim culpa sint. Adipisicing ipsum consectetur proident ullamco magna sit amet aliqua aute fugiat laborum exercitation duis et.
+
+#### Heading four
+
+Commodo fugiat aliqua minim quis pariatur mollit id tempor. Non occaecat minim esse enim aliqua adipisicing nostrud duis consequat eu adipisicing qui. Minim aliquip sit excepteur ipsum consequat laborum pariatur excepteur. Veniam fugiat et amet ad elit anim laborum duis mollit occaecat et et ipsum et reprehenderit. Occaecat aliquip dolore adipisicing sint labore occaecat officia fugiat. Quis adipisicing exercitation exercitation eu amet est laboris sunt nostrud ipsum reprehenderit ullamco. Enim sint ut consectetur id anim aute voluptate exercitation mollit dolore magna magna est Lorem. Ut adipisicing adipisicing aliqua ullamco voluptate labore nisi tempor esse magna incididunt.
+
+##### Heading five
+
+Veniam enim esse amet veniam deserunt laboris amet enim consequat. Minim nostrud deserunt cillum consectetur commodo eu enim nostrud ullamco occaecat excepteur. Aliquip et ut est commodo enim dolor amet sint excepteur. Amet ad laboris laborum deserunt sint sunt aliqua commodo ex duis deserunt enim est ex labore ut. Duis incididunt velit adipisicing non incididunt adipisicing adipisicing. Ad irure duis nisi tempor eu dolor fugiat magna et consequat tempor eu ex dolore. Mollit esse nisi qui culpa ut nisi ex proident culpa cupidatat cillum culpa occaecat anim. Ut officia sit ea nisi ea excepteur nostrud ipsum et nulla.
+
+###### Heading six
+
+Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+[[Top]](#top)
+
+# <a name="Paragraphs"></a>Paragraphs
+
+Incididunt ex adipisicing ea ullamco consectetur in voluptate proident fugiat tempor deserunt reprehenderit ullamco id dolore laborum. Do laboris laboris minim incididunt qui consectetur exercitation adipisicing dolore et magna consequat magna anim sunt. Officia fugiat Lorem sunt pariatur incididunt Lorem reprehenderit proident irure. Dolore ipsum aliqua mollit ad officia fugiat sit eu aliquip cupidatat ipsum duis laborum laborum fugiat esse. Voluptate anim ex dolore deserunt ea ex eiusmod irure. Occaecat excepteur aliqua exercitation aliquip dolor esse eu eu.
+
+Officia dolore laborum aute incididunt commodo nisi velit est est elit et dolore elit exercitation. Enim aliquip magna id ipsum aliquip consectetur ad nulla quis. Incididunt pariatur dolor consectetur cillum enim velit cupidatat laborum quis ex.
+
+Officia irure in non voluptate adipisicing sit amet tempor duis dolore deserunt enim ut. Reprehenderit incididunt in ad anim et deserunt deserunt Lorem laborum quis. Enim aute anim labore proident laboris voluptate elit excepteur in. Ex labore nulla velit officia ullamco Lorem Lorem id do. Dolore ullamco ipsum magna dolor pariatur voluptate ipsum id occaecat ipsum. Dolore tempor quis duis commodo quis quis enim.
+
+[[Top]](#top)
+
+# <a name="Blockquotes"></a>Blockquotes
+
+Ad nisi laborum aute cupidatat magna deserunt eu id laboris id. Aliquip nulla cupidatat sint ex Lorem mollit laborum dolor amet est ut esse aute. Nostrud ex consequat id incididunt proident ipsum minim duis aliqua ut ex et ad quis. Laborum sint esse cillum anim nulla cillum consectetur aliqua sit. Nisi excepteur cillum labore amet excepteur commodo enim occaecat consequat ipsum proident exercitation duis id in.
+
+> Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut.
+
+Labore ea magna Lorem consequat aliquip consectetur cillum duis dolore. Et veniam dolor qui incididunt minim amet laboris sit. Dolore ad esse commodo et dolore amet est velit ut nisi ea. Excepteur ea nulla commodo dolore anim dolore adipisicing eiusmod labore id enim esse quis mollit deserunt est. Minim ea culpa voluptate nostrud commodo proident in duis aliquip minim.
+
+> Qui est sit et reprehenderit aute est esse enim aliqua id aliquip ea anim. Pariatur sint reprehenderit mollit velit voluptate enim consectetur sint enim. Quis exercitation proident elit non id qui culpa dolore esse aliquip consequat.
+
+Ipsum excepteur cupidatat sunt minim ad eiusmod tempor sit.
+
+> Deserunt excepteur adipisicing culpa pariatur cillum laboris ullamco nisi fugiat cillum officia. In cupidatat nulla aliquip tempor ad Lorem Lorem quis voluptate officia consectetur pariatur ex in est duis. Mollit id esse est elit exercitation voluptate nostrud nisi laborum magna dolore dolore tempor in est consectetur.
+
+Adipisicing voluptate ipsum culpa voluptate id aute laboris labore esse fugiat veniam ullamco occaecat do ut. Tempor et esse reprehenderit veniam proident ipsum irure sit ullamco et labore ea excepteur nulla labore ut. Ex aute minim quis tempor in eu id id irure ea nostrud dolor esse.
+
+[[Top]](#top)
+
+# <a name="Lists"></a>Lists
+
+### Ordered List
+
+1. Longan
+2. Lychee
+3. Excepteur ad cupidatat do elit laborum amet cillum reprehenderit consequat quis.
+    Deserunt officia esse aliquip consectetur duis ut labore laborum commodo aliquip aliquip velit pariatur dolore.
+4. Marionberry
+5. Melon
+    - Cantaloupe
+    - Honeydew
+    - Watermelon
+6. Miracle fruit
+7. Mulberry
+
+### Unordered List
+
+- Olive
+- Orange
+    - Blood orange
+    - Clementine
+- Papaya
+- Ut aute ipsum occaecat nisi culpa Lorem id occaecat cupidatat id id magna laboris ad duis. Fugiat cillum dolore veniam nostrud proident sint consectetur eiusmod irure adipisicing.
+- Passionfruit
+
+[[Top]](#top)
+
+# <a name="Horizontal"></a>Horizontal rule
+
+In dolore velit aliquip labore mollit minim tempor veniam eu veniam ad in sint aliquip mollit mollit. Ex occaecat non deserunt elit laborum sunt tempor sint consequat culpa culpa qui sit. Irure ad commodo eu voluptate mollit cillum cupidatat veniam proident amet minim reprehenderit.
+
+***
+
+In laboris eiusmod reprehenderit aliquip sit proident occaecat. Non sit labore anim elit veniam Lorem minim commodo eiusmod irure do minim nisi. Dolor amet cillum excepteur consequat sint non sint.
+
+[[Top]](#top)
+
+# <a name="Table"></a>Table
+
+Duis sunt ut pariatur reprehenderit mollit mollit magna dolore in pariatur nulla commodo sit dolor ad fugiat. Laboris amet ea occaecat duis eu enim exercitation deserunt ea laborum occaecat reprehenderit. Et incididunt dolor commodo consequat mollit nisi proident non pariatur in et incididunt id. Eu ut et Lorem ea ex magna minim ipsum ipsum do.
+
+| Table Heading 1 | Table Heading 2 | Center align    | Right align     | Table Heading 5 |
+| :-------------- | :-------------- | :-------------: | --------------: | :-------------- |
+| Item 1          | Item 2          | Item 3          | Item 4          | Item 5          |
+| Item 1          | Item 2          | Item 3          | Item 4          | Item 5          |
+| Item 1          | Item 2          | Item 3          | Item 4          | Item 5          |
+| Item 1          | Item 2          | Item 3          | Item 4          | Item 5          |
+| Item 1          | Item 2          | Item 3          | Item 4          | Item 5          |
+
+Minim id consequat adipisicing cupidatat laborum culpa veniam non consectetur et duis pariatur reprehenderit eu ex consectetur. Sunt nisi qui eiusmod ut cillum laborum Lorem officia aliquip laboris ullamco nostrud laboris non irure laboris. Cillum dolore labore Lorem deserunt mollit voluptate esse incididunt ex dolor.
+
+[[Top]](#top)
+
+# <a name="Code"></a>Code
+
+## Inline code
+
+Ad amet irure est magna id mollit Lorem in do duis enim. Excepteur velit nisi magna ea pariatur pariatur ullamco fugiat deserunt sint non sint. Duis duis est `code in text` velit velit aute culpa ex quis pariatur pariatur laborum aute pariatur duis tempor sunt ad. Irure magna voluptate dolore consectetur consectetur irure esse. Anim magna `<strong>in culpa qui officia</strong>` dolor eiusmod esse amet aute cupidatat aliqua do id voluptate cupidatat reprehenderit amet labore deserunt.
+
+## Highlighted
+
+Et fugiat ad nisi amet magna labore do cillum fugiat occaecat cillum Lorem proident. In sint dolor ullamco ad do adipisicing amet id excepteur Lorem aliquip sit irure veniam laborum duis cillum. Aliqua occaecat minim cillum deserunt magna sunt laboris do do irure ea nostrud consequat ut voluptate ex.
+
+```go
+package main
+
+import (
+    "fmt"
+    "net/http"
+)
+
+func handler(w http.ResponseWriter, r *http.Request) {
+    fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
+}
+
+func main() {
+    http.HandleFunc("/", handler)
+    http.ListenAndServe(":8080", nil)
+}
+```
+
+Ex amet id ex aliquip id do laborum excepteur exercitation elit sint commodo occaecat nostrud est. Nostrud pariatur esse veniam laborum non sint magna sit laboris minim in id. Aliqua pariatur pariatur excepteur adipisicing irure culpa consequat commodo et ex id ad.
+
+[[Top]](#top)
+
+# <a name="Inline"></a>Inline elements
+
+Sint ea anim ipsum ad commodo cupidatat do **exercitation** incididunt et minim ad labore sunt. Minim deserunt labore laboris velit nulla incididunt ipsum nulla. Ullamco ad laborum ea qui et anim in laboris exercitation tempor sit officia laborum reprehenderit culpa velit quis. **Consequat commodo** reprehenderit duis [irure](#!) esse esse exercitation minim enim Lorem dolore duis irure. Nisi Lorem reprehenderit ea amet excepteur dolor excepteur magna labore proident voluptate ipsum. Reprehenderit ex esse deserunt aliqua ea officia mollit Lorem nulla magna enim. Et ad ipsum labore enim ipsum **cupidatat consequat**. Commodo non ea cupidatat magna deserunt dolore ipsum velit nulla elit veniam nulla eiusmod proident officia.
+
+![Super wide](http://placekitten.com/1280/800)
+
+*Proident sit veniam in est proident officia adipisicing* ea tempor cillum non cillum velit deserunt. Voluptate laborum incididunt sit consectetur Lorem irure incididunt voluptate nostrud. Commodo ut eiusmod tempor cupidatat esse enim minim ex anim consequat. Mollit sint culpa qui laboris quis consectetur ad sint esse. Amet anim anim minim ullamco et duis non irure. Sit tempor adipisicing ea laboris `culpa ex duis sint` anim aute reprehenderit id eu ea. Aute [excepteur proident](#!) Lorem minim adipisicing nostrud mollit ad ut voluptate do nulla esse occaecat aliqua sint anim.
+
+![Not so big](http://placekitten.com/480/400)
+
+Incididunt in culpa cupidatat mollit cillum qui proident sit. In cillum aliquip incididunt voluptate magna amet cupidatat cillum pariatur sint aliqua est _enim **anim** voluptate_. Magna aliquip proident incididunt id duis pariatur eiusmod incididunt commodo culpa dolore sit. Culpa do nostrud elit ad exercitation anim pariatur non minim nisi **adipisicing sunt _officia_**. Do deserunt magna mollit Lorem commodo ipsum do cupidatat mollit enim ut elit veniam ea voluptate.
+
+[![Manny Pacquiao](https://img.youtube.com/vi/s6bCmZmy9aQ/0.jpg)](https://youtu.be/s6bCmZmy9aQ)
+
+Reprehenderit non eu quis in ad elit esse qui aute id [incididunt](#!) dolore cillum. Esse laboris consequat dolor anim exercitation tempor aliqua deserunt velit magna laboris. Culpa culpa minim duis amet mollit do quis amet commodo nulla irure.
+
diff --git a/themes/le_filament/LICENSE b/themes/le_filament/LICENSE
new file mode 100644
index 0000000..e4483e2
--- /dev/null
+++ b/themes/le_filament/LICENSE
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright (c) 2021 YOUR_NAME_HERE
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/themes/le_filament/archetypes/default.md b/themes/le_filament/archetypes/default.md
new file mode 100644
index 0000000..ac36e06
--- /dev/null
+++ b/themes/le_filament/archetypes/default.md
@@ -0,0 +1,2 @@
++++
++++
diff --git a/themes/le_filament/layouts/404.html b/themes/le_filament/layouts/404.html
new file mode 100644
index 0000000..e69de29
diff --git a/themes/le_filament/layouts/_default/baseof.html b/themes/le_filament/layouts/_default/baseof.html
new file mode 100644
index 0000000..6aef299
--- /dev/null
+++ b/themes/le_filament/layouts/_default/baseof.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+    {{ partial "head.html" . }}
+    <body>
+        {{ partial "header.html" . }}
+        <div id="content">
+        {{- block "main" . }}{{- end }}
+        </div>
+        {{ partial "footer.html" . }}
+    </body>
+</html>
diff --git a/themes/le_filament/layouts/_default/list.html b/themes/le_filament/layouts/_default/list.html
new file mode 100644
index 0000000..a63e7ca
--- /dev/null
+++ b/themes/le_filament/layouts/_default/list.html
@@ -0,0 +1,17 @@
+{{ define "main" }}
+<main id="main">
+  <article>
+    <h1>{{ .Title }}</h1>
+    {{ .Content }}
+  </article>
+  <section class="posts-list">
+    {{ range .Pages }}
+      <div class="post">
+        <a href="{{.Permalink}}" class="post-title">{{.Title}}</a>
+        <span class="post-info">le {{.Date.Format "02/01/2006"}} par {{ .Params.author }}</span>
+        <p class="post-summary">{{ .Summary }}</p>
+      </div>
+    {{ end }}
+  </section>
+</main>
+{{ end }}
diff --git a/themes/le_filament/layouts/_default/single.html b/themes/le_filament/layouts/_default/single.html
new file mode 100644
index 0000000..6eed777
--- /dev/null
+++ b/themes/le_filament/layouts/_default/single.html
@@ -0,0 +1,30 @@
+{{ define "main" }}
+<main id="main">
+  <article>
+    <h1>{{ .Title }}</h1>
+    {{ .Content }}
+  </article>
+  <section class="post-taxonomy">
+    <h3>Étiquettes</h3>
+    <div>
+      {{ range (.GetTerms "tags") }}
+      <a href="{{ .Permalink }}" class="taxonomy">{{ .LinkTitle }}</a>
+      {{ end }}
+    </div>
+    <h3>Catégories</h3>
+    <div>
+      {{ range (.GetTerms "categories") }}
+      <a href="{{ .Permalink }}" class="taxonomy">{{ .LinkTitle }}</a>
+      {{ end }}
+    </div>
+  </section>
+  {{ if (isset .Params "mastodon_id") }}
+  <section id="comments">
+    <h2>Commentaires</h2>
+    <a type=button id="load_comments" class="mastodon_button" onclick="loadComments({{ .Params.mastodon_id }})">Afficher les commentaires</a>
+    <div id="comments_holder"></div>
+    <a type=button class="mastodon_button" href="https://mastodon.social/interact/{{ .Params.mastodon_id }}?type=reply">Écrire un commentaire</a>
+  </section>
+  {{ end }}
+</main>
+{{ end }}
diff --git a/themes/le_filament/layouts/_default/terms.html b/themes/le_filament/layouts/_default/terms.html
new file mode 100644
index 0000000..cacc19c
--- /dev/null
+++ b/themes/le_filament/layouts/_default/terms.html
@@ -0,0 +1,10 @@
+{{ define "main" }}
+  <main id="main">
+    <h1>{{ .Title }}</h1>
+    <ul>
+      {{ range .Site.Taxonomies.categories }}
+        <li><a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> {{ .Count }}</li>
+      {{ end }}
+    </ul>
+  </main>
+{{ end }}
diff --git a/themes/le_filament/layouts/categories/taxonomy.html b/themes/le_filament/layouts/categories/taxonomy.html
new file mode 100644
index 0000000..79e6ed3
--- /dev/null
+++ b/themes/le_filament/layouts/categories/taxonomy.html
@@ -0,0 +1,17 @@
+{{ define "main" }}
+<main id="main">
+  <article>
+    <h1>Catégorie : {{ .Title }}</h1>
+    {{ .Content }}
+  </article>
+  <section class="posts-list">
+    {{ range .Pages }}
+      <div class="post">
+        <a href="{{.Permalink}}" class="post-title">{{.Title}}</a>
+        <span class="post-info">le {{.Date.Format "02/01/2006"}} par {{ .Params.author }}</span>
+        <p class="post-summary">{{ .Summary }}</p>
+      </div>
+    {{ end }}
+  </section>
+</main>
+{{ end }}
diff --git a/themes/le_filament/layouts/categories/terms.html b/themes/le_filament/layouts/categories/terms.html
new file mode 100644
index 0000000..41f48f8
--- /dev/null
+++ b/themes/le_filament/layouts/categories/terms.html
@@ -0,0 +1,11 @@
+{{ define "main" }}
+  <main id="main">
+    <h1>{{ .Title }}</h1>
+    {{ .Content }}
+    <ul>
+      {{ range .Site.Taxonomies.categories }}
+        <li><a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> ({{ .Count }})</li>
+      {{ end }}
+    </ul>
+  </main>
+{{ end }}
diff --git a/themes/le_filament/layouts/index.html b/themes/le_filament/layouts/index.html
new file mode 100644
index 0000000..978c824
--- /dev/null
+++ b/themes/le_filament/layouts/index.html
@@ -0,0 +1,6 @@
+{{ define "main" }}
+<main id="main">
+  <h1>{{ .Title }}</h1>
+  {{ .Content }}
+</main>
+{{ end }}
diff --git a/themes/le_filament/layouts/partials/footer.html b/themes/le_filament/layouts/partials/footer.html
new file mode 100644
index 0000000..e46a960
--- /dev/null
+++ b/themes/le_filament/layouts/partials/footer.html
@@ -0,0 +1,17 @@
+<footer>
+  <p>
+    © <a href="https://le-filament.com">Le Filament</a> - <a href="https://le-filament.com/mentions-legales">Mentions Légales</a> - <a href="https://le-filament.com/services-libres">Services Libres</a>
+  </p>
+  <a href="https://sources.le-filament.com/lefilament" target="_blank" title="Le Filament - GitLab">
+    <img src="https://le-filament.com/img/logo-gitlab.svg" alt="Le Filament - GitLab" >
+  </a>
+  <a href="https://github.com/lefilament" target="_blank" title="Le Filament - GitHub">
+    <img src="https://le-filament.com/img/logo-github.svg" alt="Le Filament - GitHub" >
+  </a>
+  <a href="https://hub.docker.com/search/?q=lefilament%2F&type=image" target="_blank" title="Le Filament - DockerHub">
+    <img src="https://le-filament.com/img/logo-docker.svg" alt="Le Filament - DockerHub" >
+  </a>
+  <a rel="me" href="https://pouet.chapril.org/@le_filament" target="_blank" title="Le Filament - Mastodon">
+    <img src="/images/logo-mastodon.svg" alt="Le Filament - Mastodon" >
+  </a>
+</footer>
diff --git a/themes/le_filament/layouts/partials/head.html b/themes/le_filament/layouts/partials/head.html
new file mode 100644
index 0000000..e4de956
--- /dev/null
+++ b/themes/le_filament/layouts/partials/head.html
@@ -0,0 +1,12 @@
+<title>Le Filament - {{ .Title }}</title>
+
+<meta name="description" content="Le Filament est une SCOP toulousaine spécialisée dans la conduite de projets informatiques et l'intégration d'outils CRM ERP">
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<meta name="keywords" content="le filament, toulouse, numerique, odoo, mail, systeme, alfresco, bluemind, nextcloud, open source, logiciel libre, données, rgpd" />
+<meta name="author" content="Le Filament" />
+
+<link rel="stylesheet" href="/css/style.css">
+
+{{ if (isset .Params "mastodon_id") }}
+<script src="/js/masto_comments.js"></script>
+{{ end }}
diff --git a/themes/le_filament/layouts/partials/header.html b/themes/le_filament/layouts/partials/header.html
new file mode 100644
index 0000000..7da5997
--- /dev/null
+++ b/themes/le_filament/layouts/partials/header.html
@@ -0,0 +1,14 @@
+<nav>
+  <a href="/" class="logo-link" rel="home" itemprop="url">
+    <img src="https://le-filament.com/img/logo-lefilament-H.svg" class="logo" alt="Le Filament" >
+  </a>
+  <div class="menu">
+    {{ range .Site.Menus.main }}
+      <div class="menu-item">
+        <div class="menu-shadow">
+          <a href="{{ .URL }}">{{ .Name }}</a>
+        </div>
+      </div>
+    {{ end }}
+  </div>
+</nav>
diff --git a/themes/le_filament/layouts/posts/posts.html b/themes/le_filament/layouts/posts/posts.html
new file mode 100644
index 0000000..641fe7b
--- /dev/null
+++ b/themes/le_filament/layouts/posts/posts.html
@@ -0,0 +1,15 @@
+{{ define "main" }}
+<main id="main">
+  <h1>{{ .Title }}</h1>
+  {{ .Content }}
+  <section class="posts-list">
+    {{ range .Pages }}
+      <div class="post">
+        <a href="{{.Permalink}}" class="post-title">{{.Title}}</a>
+        <span class="post-info">le {{.Date.Format "02/01/2006"}} par {{ .Params.author }}</span>
+        <p class="post-summary">{{ .Summary }}</p>
+      </div>
+    {{ end }}
+  </section>
+</main>
+{{ end }}
diff --git a/themes/le_filament/layouts/posts/single.html b/themes/le_filament/layouts/posts/single.html
new file mode 100644
index 0000000..6eed777
--- /dev/null
+++ b/themes/le_filament/layouts/posts/single.html
@@ -0,0 +1,30 @@
+{{ define "main" }}
+<main id="main">
+  <article>
+    <h1>{{ .Title }}</h1>
+    {{ .Content }}
+  </article>
+  <section class="post-taxonomy">
+    <h3>Étiquettes</h3>
+    <div>
+      {{ range (.GetTerms "tags") }}
+      <a href="{{ .Permalink }}" class="taxonomy">{{ .LinkTitle }}</a>
+      {{ end }}
+    </div>
+    <h3>Catégories</h3>
+    <div>
+      {{ range (.GetTerms "categories") }}
+      <a href="{{ .Permalink }}" class="taxonomy">{{ .LinkTitle }}</a>
+      {{ end }}
+    </div>
+  </section>
+  {{ if (isset .Params "mastodon_id") }}
+  <section id="comments">
+    <h2>Commentaires</h2>
+    <a type=button id="load_comments" class="mastodon_button" onclick="loadComments({{ .Params.mastodon_id }})">Afficher les commentaires</a>
+    <div id="comments_holder"></div>
+    <a type=button class="mastodon_button" href="https://mastodon.social/interact/{{ .Params.mastodon_id }}?type=reply">Écrire un commentaire</a>
+  </section>
+  {{ end }}
+</main>
+{{ end }}
diff --git a/themes/le_filament/layouts/tags/taxonomy.html b/themes/le_filament/layouts/tags/taxonomy.html
new file mode 100644
index 0000000..58b3b22
--- /dev/null
+++ b/themes/le_filament/layouts/tags/taxonomy.html
@@ -0,0 +1,17 @@
+{{ define "main" }}
+<main id="main">
+  <article>
+    <h1>Étiquette : {{ .Title }}</h1>
+    {{ .Content }}
+  </article>
+  <section class="posts-list">
+    {{ range .Pages }}
+      <div class="post">
+        <a href="{{.Permalink}}" class="post-title">{{.Title}}</a>
+        <span class="post-info">le {{.Date.Format "02/01/2006"}} par {{ .Params.author }}</span>
+        <p class="post-summary">{{ .Summary }}</p>
+      </div>
+    {{ end }}
+  </section>
+</main>
+{{ end }}
diff --git a/themes/le_filament/layouts/tags/terms.html b/themes/le_filament/layouts/tags/terms.html
new file mode 100644
index 0000000..1375d86
--- /dev/null
+++ b/themes/le_filament/layouts/tags/terms.html
@@ -0,0 +1,11 @@
+{{ define "main" }}
+  <main id="main">
+    <h1>{{ .Title }}</h1>
+    {{ .Content }}
+    <ul>
+      {{ range .Site.Taxonomies.tags }}
+        <li><a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> ({{ .Count }})</li>
+      {{ end }}
+    </ul>
+  </main>
+{{ end }}
diff --git a/themes/le_filament/static/css/style.css b/themes/le_filament/static/css/style.css
new file mode 100644
index 0000000..aa6a295
--- /dev/null
+++ b/themes/le_filament/static/css/style.css
@@ -0,0 +1,168 @@
+@font-face {
+ font-family:'DejaVu Sans';
+ src:url(https://le-filament.com/src/fonts/DejaVuSans-ExtraLight.woff2) format('woff2'),
+ url(https://le-filament.com/src/fonts/DejaVuSans-ExtraLight.woff) format('woff');
+ font-weight:200;
+ font-style:normal
+}
+
+*, ::before, ::after {
+  box-sizing: inherit;
+}
+
+body, button, input, select, optgroup, textarea {
+  font-family: 'DejaVu Sans', sans-serif;
+  font-weight: 100;
+  font-size: 16px;
+  font-size: 1rem;
+  line-height: 1.5;
+  color: #1c2f82;
+}
+
+body {
+  height:100vh;
+  margin:0;
+  display: flex; 
+  flex-direction: column; 
+}
+
+a {
+  color: #1C2F82;
+  background-color: transparent;
+  text-decoration: none;
+  color: #1C2F82;
+}
+
+a:visited {
+  color: #1C2F82;
+}
+
+p {
+  margin-bottom: 1.5em;
+}
+
+img {
+  height: auto;
+  max-width: 100%;
+}
+
+nav {
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+  width: 800px;
+  margin: 25px auto;
+}
+
+nav .logo {
+  width: 155px;
+  margin-top: 10px;
+}
+
+section {
+  margin: 100px 0;
+}
+
+.menu {
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+  width: 50%;
+}
+
+.menu-item a {
+  text-decoration: none;
+  font-size: 13px;
+  color: #1C2F82;
+  border: 1px solid #1C2F82;
+  padding-bottom: 7px;
+  padding-right: 17px;
+  padding-left: 15px;
+  padding-top: 8px;
+  background-color: transparent;
+  font-family: monospace;
+}
+
+.menu-shadow {
+  display: block;
+  width: 85%;
+  cursor: pointer;
+  background-color: #FFD14C;
+  padding-left: 3px;
+  padding-top: 8px;
+}
+
+main {
+  width: 750px;
+  margin: 50px auto;
+}
+
+.post {
+  margin: 50px 0;
+}
+
+.post-title {
+  background-color: #ffd14c;
+  border-radius: 1.2em;
+  padding: 0 10px;
+  font-size: 1.2em;
+  font-weight: bold;
+}
+
+.post-info {
+  font-size: 0.8em;
+  font-weight: lighter;
+}
+
+.post-summary {
+  padding-left: 25px;
+}
+
+.taxonomy {
+  background-color: #ffd14c;
+  border-radius: 1em;
+  padding: 2px 12px;
+}
+
+.mastodon_button {
+  display: block;
+  width: 400px;
+  margin: 20px auto;
+  padding: 5px 10px;
+  border-radius: 4px;
+  background-color: #2b90d9;
+  color: #fff;
+  font-family: sans-serif;
+  font-weight: bold;
+  text-transform: uppercase;
+  text-decoration: none;
+  text-align: center;
+}
+
+.mastodon_button:visited {
+  color: #fff;
+}
+
+.comment {
+  display: block;
+  padding: 10px;
+  margin: 20px;
+  border: solid #1c2f82 2px;
+  border-radius: 4px;
+}
+
+.comment > .author {
+  font-weight: bold;
+}
+
+footer {
+  margin-top: auto;
+  padding-bottom: 10px;
+  text-align: center;
+  font-size: 12px;
+}
+
+footer img {
+  height: 20px;
+  margin: 10px;
+}
diff --git a/themes/le_filament/static/images/logo-mastodon.svg b/themes/le_filament/static/images/logo-mastodon.svg
new file mode 100644
index 0000000..60a9c29
--- /dev/null
+++ b/themes/le_filament/static/images/logo-mastodon.svg
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   id="svg3771"
+   version="1.1"
+   viewBox="0 0 216.4144 232.00976">
+  <metadata
+     id="metadata3777">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs3775" />
+  <path
+     style="fill:#1c2f82;fill-opacity:1"
+     id="path3769"
+     fill="#fff"
+     d="M107.86523 0C78.203984.2425 49.672422 3.4535937 33.044922 11.089844c0 0-32.97656262 14.752031-32.97656262 65.082031 0 11.525-.224375 25.306175.140625 39.919925 1.19750002 49.22 9.02375002 97.72843 54.53124962 109.77343 20.9825 5.55375 38.99711 6.71547 53.505856 5.91797 26.31125-1.45875 41.08203-9.38867 41.08203-9.38867l-.86914-19.08984s-18.80171 5.92758-39.91796 5.20508c-20.921254-.7175-43.006879-2.25516-46.390629-27.94141-.3125-2.25625-.46875-4.66938-.46875-7.20313 0 0 20.536953 5.0204 46.564449 6.21289 15.915.73001 30.8393-.93343 45.99805-2.74218 29.07-3.47125 54.38125-21.3818 57.5625-37.74805 5.0125-25.78125 4.59961-62.916015 4.59961-62.916015 0-50.33-32.97461-65.082031-32.97461-65.082031C166.80539 3.4535938 138.255.2425 108.59375 0h-.72852zM74.296875 39.326172c12.355 0 21.710234 4.749297 27.896485 14.248047l6.01367 10.080078 6.01563-10.080078c6.185-9.49875 15.54023-14.248047 27.89648-14.248047 10.6775 0 19.28156 3.753672 25.85156 11.076172 6.36875 7.3225 9.53907 17.218828 9.53907 29.673828v60.941408h-24.14454V81.869141c0-12.46875-5.24453-18.798829-15.73828-18.798829-11.6025 0-17.41797 7.508516-17.41797 22.353516v32.375002H96.207031V85.423828c0-14.845-5.815468-22.353515-17.417969-22.353516-10.49375 0-15.740234 6.330079-15.740234 18.798829v59.148439H38.904297V80.076172c0-12.455 3.171016-22.351328 9.541015-29.673828 6.568751-7.3225 15.172813-11.076172 25.851563-11.076172z" />
+</svg>
diff --git a/themes/le_filament/static/js/masto_comments.js b/themes/le_filament/static/js/masto_comments.js
new file mode 100644
index 0000000..a6f181e
--- /dev/null
+++ b/themes/le_filament/static/js/masto_comments.js
@@ -0,0 +1,32 @@
+const getJSON = async url => {
+  const response = await fetch(url);
+  if(!response.ok)
+    throw new Error(response.statusText);
+
+  const data = response.json();
+  return data;
+}
+
+function loadComments(id) {
+  getJSON('https://mastodon.social/api/v1/statuses/' + id + '/context').then(data => {
+    document.getElementById('load_comments').disable = true;
+
+    for (toot in data.descendants) {
+      const comment = document.createElement('div');
+      comment.classList.add('comment');
+
+      const author = document.createElement('div');
+      author.classList.add('author');
+      author.innerHTML = data.descendants[toot].account.username;
+
+      const content = document.createElement('div');
+      content.classList.add('content');
+      content.innerHTML = data.descendants[toot].content;
+
+      comment.appendChild(author);
+      comment.appendChild(content);
+      document.getElementById('comments_holder').appendChild(comment);
+    }
+    document.getElementById('load_comments').remove();
+  });
+}
diff --git a/themes/le_filament/theme.toml b/themes/le_filament/theme.toml
new file mode 100644
index 0000000..5f548d6
--- /dev/null
+++ b/themes/le_filament/theme.toml
@@ -0,0 +1,21 @@
+# theme.toml template for a Hugo theme
+# See https://github.com/gohugoio/hugoThemes#themetoml for an example
+
+name = "le_filament"
+license = "MIT"
+licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE"
+description = ""
+homepage = "http://example.com/"
+tags = []
+features = []
+min_version = "0.41.0"
+
+[author]
+  name = ""
+  homepage = ""
+
+# If porting an existing theme
+[original]
+  name = ""
+  homepage = ""
+  repo = ""
-- 
GitLab