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

github.com/vividvilla/ezhil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcgiacomi <christiangiacomi@gmail.com>2019-10-12 18:39:40 +0300
committercgiacomi <christiangiacomi@gmail.com>2019-10-12 18:39:40 +0300
commit470638b4bc911ff2127ea057992ab13f4e4c17d6 (patch)
treeb795cdc1e6eb38359f0e17360681180ef0ac82c2
parent4ccf226f91d9d2cd2045d36a521291bf0f9bb4b1 (diff)
fix: move tags to bottom of post
-rw-r--r--layouts/_default/single.html23
-rw-r--r--static/css/main.css6
2 files changed, 13 insertions, 16 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 58c3828..496a564 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -8,23 +8,24 @@
<div class="post-header">
<h1 class="title">{{ .Title }}</h1>
<div class="meta">Posted at &mdash; {{ dateFormat "Jan 2, 2006" .Date }}</div>
- <div class="post-tags">
- <small>
- {{ if ne .Type "page" }}
- {{ if gt .Params.tags 0 }}
- {{ range .Params.tags }}
- <a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
- {{ end }}
- {{ end }}
- {{ end }}
- </small>
- </div>
</div>
<div class="markdown">
{{ .Content }}
</div>
+ <div class="post-tags">
+ <small>
+ {{ if ne .Type "page" }}
+ {{ if gt .Params.tags 0 }}
+ {{ range .Params.tags }}
+ <a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
+ {{ end }}
+ {{ end }}
+ {{ end }}
+ </small>
+ </div>
+
{{- $.Scratch.Set "isDisqus" true -}}
{{- if and (isset .Params "type") (in .Site.Params.disableDisqusTypes .Params.type) -}}
diff --git a/static/css/main.css b/static/css/main.css
index 4e7a78a..62577ad 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -279,11 +279,7 @@ ul {
margin: 0;
}
-.post .post-header .post-tags {
- padding-left: 5px;
-}
-
-.post .post-header .post-tags a {
+.post-tags a {
margin-right: 5px;
}