@@ -1,8 +1,9 @@
|
|||||||
<footer id="footer">
|
<footer id="footer">
|
||||||
<div class="outer">
|
<div class="outer">
|
||||||
<div id="footer-info" class="inner">
|
<div id="footer-info" class="inner">
|
||||||
© {{ now.Format "2006"}} {{ or .Site.Author .Site.Title }}
|
© {{ now.Format "2006"}} {{ or .Site.Author.name .Site.Title }}
|
||||||
Powered by <a href="https://gohugo.io" target="_blank">Hugo</a> with theme <a href="https://github.com/carsonip/hugo-theme-minos">Minos</a>
|
<br />
|
||||||
|
Powered by <a href="https://gohugo.io" target="_blank">Hugo</a> with theme <a href="https://github.com/carsonip/hugo-theme-minos" target="_blank">Minos</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{ template "_internal/google_analytics_async.html" . }}
|
{{ template "_internal/google_analytics_async.html" . }}
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
<nav id="article-nav">
|
<nav id="article-nav">
|
||||||
{{ if .Prev }}
|
{{ if .NextPage }}
|
||||||
<a href="{{ .Prev.RelPermalink }}" id="article-nav-newer" class="article-nav-link-wrap">
|
<a href="{{ .NextPage.RelPermalink }}" id="article-nav-newer" class="article-nav-link-wrap">
|
||||||
<div class="article-nav-title"><span><</span>
|
<div class="article-nav-title"><span><</span>
|
||||||
{{ .Prev.Title }}
|
{{ .NextPage.Title }}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ if .Next }}
|
{{ if .PrevPage }}
|
||||||
<a href="{{ .Next.RelPermalink }}" id="article-nav-older" class="article-nav-link-wrap">
|
<a href="{{ .PrevPage.RelPermalink }}" id="article-nav-older" class="article-nav-link-wrap">
|
||||||
<div class="article-nav-title">{{ .Next.Title }} <span>></span></div>
|
<div class="article-nav-title">{{ .PrevPage.Title }} <span>></span></div>
|
||||||
</a>
|
</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</nav>
|
</nav>
|
||||||
@@ -5,7 +5,7 @@
|
|||||||
<section id="main" class="outer">
|
<section id="main" class="outer">
|
||||||
<section class="archives-wrap">
|
<section class="archives-wrap">
|
||||||
<div class="archive-tag-wrap">
|
<div class="archive-tag-wrap">
|
||||||
<span class="archive-tag">#{{ .Title }}</span>
|
<span class="archive-tag">#{{ .Title | lower }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="archives">
|
<div class="archives">
|
||||||
{{ range .Paginator.Pages }}
|
{{ range .Paginator.Pages }}
|
||||||
|
|||||||
Reference in New Issue
Block a user