aboutsummaryrefslogtreecommitdiffstats
path: root/themes/ymherklotz/layouts/index.html
blob: 7991b77625d9806354f1b43c888f29bc4a131e97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{{ define "main" }}
<main>
  <div class="container">
    <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>Service</h2>

        {{ partial "service.html" . }}

        <h2>News</h2>

        {{ partial "news.html" . }}

      </article>
    </div>
    <div class="right flex">
      {{ partial "tagcloud.html" . }}
    </div>
  </div>
</main>
{{ end }}