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