summaryrefslogtreecommitdiffstats
path: root/layouts/partials/post-meta.html
diff options
context:
space:
mode:
authorSerghei Iakovlev <egrep@protonmail.ch>2022-05-08 18:47:25 +0200
committerSerghei Iakovlev <egrep@protonmail.ch>2022-05-08 18:47:25 +0200
commitb29419c9c72bbc2d605addabf0dfd84a7f41b88b (patch)
tree4199578140684b30d7fb93e5c28b86db39442c83 /layouts/partials/post-meta.html
parent40288d1362e1074c6e2c0d0d9de5a2d59bc86fb5 (diff)
downloadgohugo-theme-ed-b29419c9c72bbc2d605addabf0dfd84a7f41b88b.tar.gz
Provide ability to list posts on main page
Diffstat (limited to 'layouts/partials/post-meta.html')
-rw-r--r--layouts/partials/post-meta.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/layouts/partials/post-meta.html b/layouts/partials/post-meta.html
new file mode 100644
index 0000000..a539c54
--- /dev/null
+++ b/layouts/partials/post-meta.html
@@ -0,0 +1,9 @@
+<div class="post-meta">
+ {{- $root := . -}}
+ {{- with .Param "post_meta" -}}
+ {{- range $field := . -}}
+ {{- $p := printf "post-meta/%s.html" $field -}}
+ {{- partial $p $root -}}
+ {{- end -}}
+ {{- end -}}
+</div>