Archived
9
1
This repository has been archived on 2019-06-17. You can view files and clone it, but cannot push or open issues or pull requests.
blog_old/template/pure/sidebar.html
2016-01-01 23:05:36 +08:00

17 lines
652 B
HTML

<div class="sidebar pure-u">
<header class="header">
<hgroup>
<h1 class="brand-title">
<a href="{{.Root}}/" class="brand-title">{{.Meta.Title}}</a>
</h1>
<h2 class="brand-tagline">{{.Meta.Subtitle}}</h2>
</hgroup>
<nav class="nav">
<ul class="nav-list">{{range .Nav}}
<li class="{{if .IsHover}}active{{end}}">{{if .IconClass}}<i class="{{.IconClass}}"></i>{{end}}
<a href="{{url .Link}}"{{if .IsBlank}} target="_blank" {{end}}>{{.Title}}</a>
</li>{{end}}
</ul>
</nav>
</header>
</div>