blob: 383737b314cc5cac1e830e14b530399126019493 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<h2>Research</h2>
<ul class="article-list">
{{ range .Site.Pages.Children "research/" }}
<li>
{{ template "date" .Date }}
<a href="{{ $.Rel .Url }}" title="{{ .Title }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
<h2>Blog posts</h2>
<ul class="article-list">
{{ range .Site.Pages.Children "blog/" }}
<li>
{{ template "date" .Date }}
<a href="{{ $.Rel .Url }}" title="{{ .Title }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
|