aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/layouts/research/single.html
diff options
context:
space:
mode:
authorJean-Pierre Appel <jeanpierre.appel01@gmail.com>2023-12-25 17:17:21 -0500
committerJean-Pierre Appel <jeanpierre.appel01@gmail.com>2023-12-25 17:17:21 -0500
commitcc1220bfd794dff1fc28bd39cafb63c4b1093cf8 (patch)
tree8d51983970fc62457ed97599d784cfa150b5c766 /layouts/research/single.html
parenta181759e4a108c35fcf6898abbf17f2a424d85dc (diff)
rewrite layouts
Diffstat (limited to 'layouts/research/single.html')
-rw-r--r--layouts/research/single.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/layouts/research/single.html b/layouts/research/single.html
new file mode 100644
index 0000000..01ecb9e
--- /dev/null
+++ b/layouts/research/single.html
@@ -0,0 +1,15 @@
+{{ define "main" }}
+ {{ if .Params.abstract }}
+ <section class="research abstract">
+ <h2>Abstract</h2>
+ <blockquote>
+ {{ .Params.abstract }}
+ </blockquote>
+ </section>
+ {{ end }}
+ {{ .Content }}
+{{ end }}
+
+{{ define "footer" }}
+ {{ partial "meta-tag_nav.html" . }}
+{{ end }}