blob: 2156f373c1a24708e837a26272b1af7730e0e3a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{{- partial "header.html" . }}
<article class="post-single">
<header class="post-header">
<h1 class="post-title">{{ .Title }}</h1>
{{- if .Params.tags }}
<ul class="post-tags">
{{- range .Params.tags }}
{{- $href := print (absURL "tags/") (urlize .) }}
<li><a href="{{ $href }}">{{ . }}</a></li>
{{- end }}
</ul>
{{- end }}
</header>
<div class="post-content">
{{- if .Params.changelog }}
<section>
<h1>更新履歴</h1>
<ul>
{{- range $date, $remark := .Params.changelog }}
<li>{{ $date }}: {{ $remark }}</li>
{{- end }}
</ul>
</section>
{{- end }}
{{ .Content }}
</div>
</article>
{{- partial "footer.html" . }}
|