summaryrefslogtreecommitdiffstats
path: root/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..2ecb52a
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,35 @@
+{{ define "main" }}
+<main>
+ <div class="container">
+ <div class="left flex">
+ </div>
+ <div class="center flex">
+ <article class="content">
+
+ {{ .Content }}
+
+ <h2>Publications</h2>
+
+ {{ partial "papers.html" . }}
+
+ <h2>Other Papers and Posters</h2>
+
+ {{ partial "papers_other.html" . }}
+
+ <h2>Blog</h2>
+
+ {{ range first 5 (where .Site.RegularPages "Section" "blog") }}
+ {{ .Render "summary"}}
+ {{ end }}
+
+ <h2>News</h2>
+
+ {{ partial "news.html" . }}
+
+ </article>
+ </div>
+ <div class="right flex">
+ </div>
+ </div>
+</main>
+{{ end }}