diff --git a/layouts/partials/posts/metadata.html b/layouts/partials/posts/metadata.html
new file mode 100644
index 0000000..0a5c87c
--- /dev/null
+++ b/layouts/partials/posts/metadata.html
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+ {{ .ReadingTime }} min read
+
+
+{{ $tc := 0 }}
+{{ with .Params.tags }}
+ {{ range sort . }}
+ {{ $name := . }}
+ {{ with $.Site.GetPage (printf "/tags/%s" $name | urlize) }}
+ {{ if eq $tc 0 }}
+
+
+ {{ template "post-tag" dict "name" $name "page" . }}
+
+ {{ else }}
+ {{ template "post-tag" dict "name" $name "page" . }}
+ {{ end }}
+ {{ end }}
+ {{ $tc = (add $tc 1) }}
+ {{ end }}
+{{ end }}
+
+{{ define "post-tag" }}
+
+{{ end }}
+
+{{ define "post-author" }}
+
+{{ end }}
diff --git a/layouts/posts/list.html b/layouts/posts/list.html
index f833e77..b9a7426 100644
--- a/layouts/posts/list.html
+++ b/layouts/posts/list.html
@@ -21,40 +21,7 @@
{{ end }}
diff --git a/layouts/posts/single.html b/layouts/posts/single.html
index 3e0f2b7..1087156 100644
--- a/layouts/posts/single.html
+++ b/layouts/posts/single.html
@@ -3,22 +3,7 @@
{{ .Title }}