diff options
Diffstat (limited to 'layouts/utilities/list.html')
| -rw-r--r-- | layouts/utilities/list.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layouts/utilities/list.html b/layouts/utilities/list.html new file mode 100644 index 0000000..3d4ebe0 --- /dev/null +++ b/layouts/utilities/list.html @@ -0,0 +1,17 @@ +{{ define "main" }} + {{ .Content }} + + <menu> + {{ $cardConfig := dict + "fullSummary" false + "showMeta" true + "showTags" false + "showCategories" false + }} + {{ range .Pages }} + {{ .Scratch.Set "cardConfig" $cardConfig }} + {{ partial "card.html" . }} + {{ end }} + </menu> + +{{ end }} |
