From e7b28d2a1a9d72993c195b34da7ee6444eb5b47a Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Fri, 31 Mar 2023 22:43:00 -0500 Subject: [PATCH] refactor: Remove custom academia layout --- layouts/academia/list.html | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 layouts/academia/list.html diff --git a/layouts/academia/list.html b/layouts/academia/list.html deleted file mode 100644 index fa1e46f..0000000 --- a/layouts/academia/list.html +++ /dev/null @@ -1,20 +0,0 @@ -{{ define "main" }} - {{ partial "scrolling-image-header" . }} -
-
-

Selected Presentations

- {{ $featuredpubs := where .Pages ".Params.featured" "==" true }} - {{ range $featuredpubs }} - {{ .Scratch.Set "showAbstract" true }} - {{ partial "academia/list-single.html" . }} - {{ end }} -
-

Other Presentations

- {{ $nonfeaturedpubs := where .Pages ".Params.featured" "==" false }} - {{ range $nonfeaturedpubs }} - {{ partial "academia/list-single.html" . }} - {{ end }} - -
-
-{{ end }}