Merge pull request #21 from apemost/master

Fix layouts
This commit is contained in:
Carson Ip
2019-01-16 22:14:03 +08:00
committed by GitHub
6 changed files with 17 additions and 16 deletions

View File

@@ -1,8 +1,9 @@
<footer id="footer">
<div class="outer">
<div id="footer-info" class="inner">
&copy; {{ now.Format "2006"}} {{ or .Site.Author .Site.Title }}&nbsp;
Powered by <a href="https://gohugo.io" target="_blank">Hugo</a> with theme <a href="https://github.com/carsonip/hugo-theme-minos">Minos</a>
&copy; {{ now.Format "2006"}} {{ or .Site.Author.name .Site.Title }}
<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>
{{ template "_internal/google_analytics_async.html" . }}

View File

@@ -1,14 +1,14 @@
<nav id="article-nav">
{{ if .Prev }}
<a href="{{ .Prev.RelPermalink }}" id="article-nav-newer" class="article-nav-link-wrap">
{{ if .NextPage }}
<a href="{{ .NextPage.RelPermalink }}" id="article-nav-newer" class="article-nav-link-wrap">
<div class="article-nav-title"><span>&lt;</span>&nbsp;
{{ .Prev.Title }}
{{ .NextPage.Title }}
</div>
</a>
{{ end }}
{{ if .Next }}
<a href="{{ .Next.RelPermalink }}" id="article-nav-older" class="article-nav-link-wrap">
<div class="article-nav-title">{{ .Next.Title }}&nbsp;<span>&gt;</span></div>
{{ if .PrevPage }}
<a href="{{ .PrevPage.RelPermalink }}" id="article-nav-older" class="article-nav-link-wrap">
<div class="article-nav-title">{{ .PrevPage.Title }}&nbsp;<span>&gt;</span></div>
</a>
{{ end }}
</nav>

View File

@@ -5,7 +5,7 @@
<section id="main" class="outer">
<section class="archives-wrap">
<div class="archive-tag-wrap">
<span class="archive-tag">#{{ .Title }}</span>
<span class="archive-tag">#{{ .Title | lower }}</span>
</div>
<div class="archives">
{{ range .Paginator.Pages }}