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