From 46b96bdab20d7f1e46a0cf171f7c036b6f4dc631 Mon Sep 17 00:00:00 2001 From: kapoko Date: Tue, 29 Dec 2020 15:05:10 +0100 Subject: [PATCH] Added section back in to fix missing arrows --- site/config.toml | 2 +- site/layouts/_default/list.html | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 site/layouts/_default/list.html diff --git a/site/config.toml b/site/config.toml index 16fcfac1..051a91b3 100644 --- a/site/config.toml +++ b/site/config.toml @@ -2,7 +2,7 @@ baseURL = "https://kapoko.github.io/delicious-hamburgers/" languageCode = "en-us" title = "Delicious Hamburgers 🍔" staticDir = ["static", "dist"] -disableKinds = ["taxonomy", "taxonomyTerm", "section"] +disableKinds = ["taxonomy", "taxonomyTerm"] [params] author = "Kasper Koman" description = "Beautifully animated Sass-powered hamburger menu buttons" diff --git a/site/layouts/_default/list.html b/site/layouts/_default/list.html new file mode 100644 index 00000000..95fc4f63 --- /dev/null +++ b/site/layouts/_default/list.html @@ -0,0 +1,13 @@ +{{ define "main" }} +
+
+
    + {{ with .Site.GetPage "/burger" }} + {{ range .Pages.ByWeight }} +
  • {{ .Title }}
  • + {{ end }} + {{ end }} +
+
+
+{{ end }} \ No newline at end of file