initial commit
This commit is contained in:
commit
5c664be9a8
55 changed files with 8825 additions and 0 deletions
20
layouts/partials/header/site-header.html
Normal file
20
layouts/partials/header/site-header.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<header class="site-header">
|
||||
{{ block "header" . }}
|
||||
<h1 class="site-header__title" itemprop="name"><a href="{{ .Site.Home.RelPermalink }}">{{ .Site.Title }}</a></h1>
|
||||
<p class="site-header__tagline" itemprop="about">Views my own. Discussion ≠ endorsement. Do try this at home.</p>
|
||||
<p class="site-header__icons">~
|
||||
<a href="mailto:{{ $.Site.Author.email }}" rel="me">📧</a> ~
|
||||
<a href="{{ .Site.Params.codeURL }}">💻</a> ~
|
||||
<a href="/{{ .Site.Params.keyfile }}">🔐</a> ~
|
||||
<a href="/index.xml"><img class="feed-icon" src="/images/feed-icon.svg"></a> ~
|
||||
</p>
|
||||
|
||||
<nav class="site-header__nav">
|
||||
<ul>
|
||||
{{ range .Site.Sections.ByTitle }}
|
||||
<a href="{{ .RelPermalink }}"><li>{{ .Title | safeHTML }}</li></a>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</nav>
|
||||
{{ end }}
|
||||
</header>
|
Loading…
Add table
Add a link
Reference in a new issue