forked from zxysilent/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtags.html
25 lines (25 loc) · 860 Bytes
/
tags.html
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title>{{.basic.Title}}·标签</title>
<link rel="canonical" href="{{.basic.SiteUrl}}/tags" />
{{template "tpl-linker.html" .}}
</head>
<body>
{{template "tpl-naver.html" .}}
<div id="main">
<article class="post tags">
<h1 class="title">标签</h1>
<div class="entry-content">
<section>
{{ range $k, $v := .Tags }}
<a href="/tags/{{$v.Name}}" data-tag="{{$v.Name}}">{{$v.Intro}}({{$v.Count}})</a>
{{end}}
</section>
</div>
</article>
{{template "tpl-footer.html" .}}
</div>
{{template "tpl-script.html" .}}
</body>
</html>