20 lines
565 B
HTML
20 lines
565 B
HTML
{{ partial "head" . }}
|
|
{{ partial "navbar.html" . }}
|
|
{{ partial "header" . }}
|
|
<p>思ったことを書きます。ちょっぴり哲学的</p>
|
|
<div id="container">
|
|
<div class="outer">
|
|
<div id="blog-archives" class="category">
|
|
<ul class="cp_list">
|
|
{{ range first 100 (where site.RegularPages.Reverse "Type" "in" site.Params.mainSections) }}
|
|
<li><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ partial "footer" . }}
|
|
</body>
|
|
</html>
|