more
This commit is contained in:
parent
e492c397c3
commit
732534b367
@ -2,8 +2,11 @@
|
|||||||
|
|
||||||
<header><h1>{{ .Title }}</h1></header>
|
<header><h1>{{ .Title }}</h1></header>
|
||||||
|
|
||||||
|
<article>
|
||||||
|
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
|
|
||||||
|
<ul>
|
||||||
{{ range.Pages }}
|
{{ range.Pages }}
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
@ -12,5 +15,8 @@
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
{{ partial "footer.html" . }}
|
{{ partial "footer.html" . }}
|
||||||
|
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
<header><h1>{{ .Title }}</h1></header>
|
<header><h1>{{ .Title }}</h1></header>
|
||||||
|
|
||||||
|
<article>
|
||||||
|
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
{{ partial "footer.html" . }}
|
{{ partial "footer.html" . }}
|
||||||
|
@ -1,10 +1,14 @@
|
|||||||
{{ partial "header.html" . }}
|
{{ partial "header.html" . }}
|
||||||
|
|
||||||
<header><h1>{{ .Title | title }}</h1></header>
|
<header><h1 id="tag_{{ .Title }}">{{ .Title | title }}</h1></header>
|
||||||
|
|
||||||
|
<article>
|
||||||
|
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
<ul class=tagartlist>
|
<ul class=tagartlist>
|
||||||
{{ range.Pages }}<li><time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> – <a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
{{ range.Pages }}<li><time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> – <a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
||||||
{{ end }}</ul>
|
{{ end }}</ul>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
{{ partial "footer.html" . }}
|
{{ partial "footer.html" . }}
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
{{ if isset .Site.Taxonomies "tags" }}{{ if not (eq (len .Site.Taxonomies.tags) 0) }} <div id="tagcloud">
|
{{ if isset .Site.Taxonomies "tags" }}{{ if not (eq (len .Site.Taxonomies.tags) 0) }} <ul id="tagcloud">
|
||||||
{{ range $name, $items := .Site.Taxonomies.tags }}{{ $url := printf "%s/%s" "tags" ($name | urlize | lower)}}<a href="{{ $url | absURL }}" id="tag_{{ $name }}">{{ $name | title }}</a>
|
{{ range $name, $items := .Site.Taxonomies.tags }}{{ $url := printf "%s/%s" "tags" ($name | urlize | lower)}}<li><a href="{{ $url | absURL }}" id="tag_{{ $name }}">{{ $name | title }}</a></li>
|
||||||
{{ end }}</div>{{ end }}{{ end }}
|
{{ end }}</ul>{{ end }}{{ end }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user