diff --git a/config.toml b/config.toml
index 71a9bf5e7deb255b310417b28eea2d011536de4f..1ab452e38b7259ffa7f0618c21a8da02c95e4b8b 100644
--- a/config.toml
+++ b/config.toml
@@ -11,3 +11,6 @@ theme = "le_filament"
 [[menu.main]]
     name = "Étiquettes"
     url = "/tags"
+
+[markup]
+  defaultMarkdownHandler = "pandoc"
diff --git a/themes/le_filament/layouts/_default/single.html b/themes/le_filament/layouts/_default/single.html
index 6eed777427e40611699bd247e9a43ad79bb4d48d..978c824e48a359beff51ac88908fffe3794f4dd5 100644
--- a/themes/le_filament/layouts/_default/single.html
+++ b/themes/le_filament/layouts/_default/single.html
@@ -1,30 +1,6 @@
 {{ 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 }}
+  <h1>{{ .Title }}</h1>
+  {{ .Content }}
 </main>
 {{ end }}
diff --git a/themes/le_filament/layouts/partials/footer.html b/themes/le_filament/layouts/partials/footer.html
index e46a96078102ba7b56b4940b21e9dce4f39b95da..741b62ebc8314756511fff063eb0ab4f4b6cb3d6 100644
--- a/themes/le_filament/layouts/partials/footer.html
+++ b/themes/le_filament/layouts/partials/footer.html
@@ -3,15 +3,15 @@
     © <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" >
+    <img src="https://le-filament.com/img/logo-gitlab.svg" alt="Le Filament - GitLab" class="logo">
   </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" >
+    <img src="https://le-filament.com/img/logo-github.svg" alt="Le Filament - GitHub" class="logo">
   </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" >
+    <img src="https://le-filament.com/img/logo-docker.svg" alt="Le Filament - DockerHub" class="logo">
   </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" >
+    <img src="/images/logo-mastodon.svg" alt="Le Filament - Mastodon" class="logo">
   </a>
 </footer>
diff --git a/themes/le_filament/layouts/partials/head.html b/themes/le_filament/layouts/partials/head.html
index e4de9560338fd253c8e9a33668ed91b84d385caf..468639679f783120c79013b811a2908ecc6ee054 100644
--- a/themes/le_filament/layouts/partials/head.html
+++ b/themes/le_filament/layouts/partials/head.html
@@ -1,5 +1,6 @@
 <title>Le Filament - {{ .Title }}</title>
 
+<meta charset="utf-8"/>
 <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" />
diff --git a/themes/le_filament/layouts/posts/single.html b/themes/le_filament/layouts/posts/single.html
index 6eed777427e40611699bd247e9a43ad79bb4d48d..6ae03cabf3d5bc0a8a280aea26da088bcd90f8d7 100644
--- a/themes/le_filament/layouts/posts/single.html
+++ b/themes/le_filament/layouts/posts/single.html
@@ -5,18 +5,26 @@
     {{ .Content }}
   </article>
   <section class="post-taxonomy">
+    <h3>Licence</h3>
+    <div>
+      <a href="{{ .Params.licence.url | default "https://creativecommons.org/licenses/by-sa/4.0/" }}" class="taxonomy">{{ .Params.licence.name | default "CC-BY-SA" }}</a>
+    </div>
+    {{ if (isset .Params "tags") }}
     <h3>Étiquettes</h3>
     <div>
       {{ range (.GetTerms "tags") }}
       <a href="{{ .Permalink }}" class="taxonomy">{{ .LinkTitle }}</a>
       {{ end }}
     </div>
+    {{ end }}
+    {{ if (isset .Params "categories") }}
     <h3>Catégories</h3>
     <div>
       {{ range (.GetTerms "categories") }}
       <a href="{{ .Permalink }}" class="taxonomy">{{ .LinkTitle }}</a>
       {{ end }}
     </div>
+    {{ end }}
   </section>
   {{ if (isset .Params "mastodon_id") }}
   <section id="comments">
diff --git a/themes/le_filament/static/css/style.css b/themes/le_filament/static/css/style.css
index aa6a29583263422d90e89504a0e4df53fd82f047..0356803bfd935a32c8e6e6974d3659cde5bbdec8 100644
--- a/themes/le_filament/static/css/style.css
+++ b/themes/le_filament/static/css/style.css
@@ -42,8 +42,10 @@ p {
 }
 
 img {
+  display: block;
   height: auto;
   max-width: 100%;
+  margin: 0 auto;
 }
 
 nav {
@@ -59,10 +61,43 @@ nav .logo {
   margin-top: 10px;
 }
 
+main {
+  width: 750px;
+  margin: 50px auto;
+}
+
 section {
   margin: 100px 0;
 }
 
+table {
+  margin: 0 auto;
+  border-collapse: collapse;
+}
+
+table thead {
+  border-bottom: solid 2px;
+}
+
+table th,
+table td {
+  border-left: solid 1px;
+}
+
+table tr th:first-child,
+table tr td:first-child {
+  border-left: none;
+}
+
+table tr {
+  border-bottom: thin;
+}
+
+table th,
+table td {
+  padding: 5px 10px;
+}
+
 .menu {
   display: flex;
   justify-content: space-between;
@@ -92,11 +127,6 @@ section {
   padding-top: 8px;
 }
 
-main {
-  width: 750px;
-  margin: 50px auto;
-}
-
 .post {
   margin: 50px 0;
 }
@@ -162,7 +192,8 @@ footer {
   font-size: 12px;
 }
 
-footer img {
+footer .logo {
+  display: inline-block;
   height: 20px;
   margin: 10px;
 }