Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/carsonip/hugo-theme-minos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Lyu <apemost@gmail.com>2019-01-15 20:10:52 +0300
committerAndrew Lyu <apemost@gmail.com>2019-01-15 20:10:52 +0300
commitc2de392b517b5f79f60fa6b26e97b448e34a63b6 (patch)
treead7d4db5dc2a32290f874e3a147a9e9e2d0b0fa6
parent8a1f7476046cb4b8b9db6deeb6b3422b13ede2dc (diff)
Fix layouts
-rw-r--r--layouts/_default/list.html4
-rw-r--r--layouts/partials/footer.html7
-rw-r--r--layouts/partials/head.html4
-rw-r--r--layouts/partials/header.html2
-rw-r--r--layouts/taxonomy/tag.html4
5 files changed, 11 insertions, 10 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index ac1e96a..91e32a2 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -5,7 +5,7 @@
<section id="main" class="outer">
<section class="archives-wrap">
<div class="archive-category-wrap">
- <span class="archive-category">{{ .Title }}</span>
+ <span class="archive-category">{{ .Title | upper }}</span>
</div>
<div class="archives">
{{ range .Paginator.Pages }}
@@ -17,4 +17,4 @@
{{ partial "footer.html" . }}
</div>
</body>
-</html> \ No newline at end of file
+</html>
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 9fb2882..ac3795a 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -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" . }}
@@ -27,4 +28,4 @@
}
});
</script>
-</footer> \ No newline at end of file
+</footer>
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 1d183c3..1a9165b 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -11,10 +11,10 @@
<link href="{{ "webfonts/ptserif/main.css" | absURL }}" rel='stylesheet' type='text/css'>
<link href="{{ "webfonts/source-code-pro/main.css" | absURL }}" rel="stylesheet" type="text/css">
-
+
<link rel="stylesheet" href="{{ "css/style.css" | absURL }}">
<link href="http://gmpg.org/xfn/11" rel="profile">
-
+
{{ .Hugo.Generator }}
</head>
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 1a17b17..e76bb2f 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -14,4 +14,4 @@
</nav>
</div>
</div>
-</header> \ No newline at end of file
+</header>
diff --git a/layouts/taxonomy/tag.html b/layouts/taxonomy/tag.html
index d110624..f82ed40 100644
--- a/layouts/taxonomy/tag.html
+++ b/layouts/taxonomy/tag.html
@@ -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 }}
@@ -17,4 +17,4 @@
{{ partial "footer.html" . }}
</div>
</body>
-</html> \ No newline at end of file
+</html>