summaryrefslogtreecommitdiffstats
path: root/layouts/index.html
blob: 16d16c7394f457890d3d6ec8a4422bdbfebf7922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ define "main" -}}

<div class="introduction">
    {{ .Content }}
</div>

<hr>

<div class="toc">
    <h2>Latest Publications</h2>
    <ul class="texts">
        {{ range first 10 (where .Site.RegularPages "Section" "!=" "" ) }}
            <li class="text-title">
                <a href="{{ .Permalink }}">{{ .Title }}</a>
            </li>
        {{ end }}
    </ul>
</div>

{{- end }}