blob: 921bbf7a7a2b6d393373c665c6b36f496ef248a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<h2>Sandbox experiments</h2>
<ul class="article-list">
{{ range .Site.Pages.Children "sandbox/" }}
<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>
|