diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 3ae5fc9..977c0d9 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -2,27 +2,7 @@
{{ .Content }}
diff --git a/layouts/partials/post-info.html b/layouts/partials/post-info.html
new file mode 100644
index 0000000..2071037
--- /dev/null
+++ b/layouts/partials/post-info.html
@@ -0,0 +1,25 @@
+
+ - Publié le : {{ dateFormat "2006-01-02" (default .Date (.PublishDate)) }}
+ {{ if isset .Params "lastmod" }}
+ - Dernière mise à jour : {{ .Lastmod.Format "2006-01-02" }}
+ {{ end }}
+ {{ with .Params.categories }}
+ - Catégories :
+
+ {{ range . }}
+ - {{ . }}
+ {{ end }}
+
+
+ {{ end }}
+ {{ with .Params.tags }}
+ - Tags :
+
+ {{ range . }}
+ - {{ . }}
+ {{ end }}
+
+
+ {{ end }}
+
+