aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/layouts/research/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/research/list.html')
-rw-r--r--layouts/research/list.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/layouts/research/list.html b/layouts/research/list.html
new file mode 100644
index 0000000..db587e3
--- /dev/null
+++ b/layouts/research/list.html
@@ -0,0 +1,18 @@
+{{ define "main" }}
+
+ {{ .Content }}
+
+ <menu>
+ {{ $cardConfig := dict
+ "fullSummary" true
+ "showMeta" true
+ "showTags" true
+ "showCategories" true
+ }}
+ {{ range sort .Pages "Params.end_date" "desc" }}
+ {{ .Scratch.Set "cardConfig" $cardConfig }}
+ {{ partial "card.html" . }}
+ {{ end }}
+ </menu>
+ {{ partial "adaptive_details.html" . }}
+{{ end }}