akyuu/templates/list.html

9 行
183 B
HTML
Raw 通常表示 履歴

2016-02-09 11:15:04 +09:00
{{ template "header" }}
2016-02-08 11:32:59 +09:00
<h1>list of feeds</h1>
<ul>
{{ range .Dir }}
<li><a href="/feeds/{{ . }}">{{ . }}</a></li>
2016-02-08 11:32:59 +09:00
{{ end }}
</ul>
2016-02-09 11:04:21 +09:00
{{ template "footer" }}