Merge pull request #19 from cgiacomi/feature/posttags
feat: add tag list to post
This commit is contained in:
commit
4f0c28af2e
@ -14,6 +14,20 @@
|
|||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="post-tags">
|
||||||
|
{{ if ne .Type "page" }}
|
||||||
|
{{ if gt .Params.tags 0 }}
|
||||||
|
<nav class="nav tags">
|
||||||
|
<ul class="flat">
|
||||||
|
{{ range .Params.tags }}
|
||||||
|
<li><a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a></li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
|
||||||
{{- $.Scratch.Set "isDisqus" true -}}
|
{{- $.Scratch.Set "isDisqus" true -}}
|
||||||
|
|
||||||
{{- if and (isset .Params "type") (in .Site.Params.disableDisqusTypes .Params.type) -}}
|
{{- if and (isset .Params "type") (in .Site.Params.disableDisqusTypes .Params.type) -}}
|
||||||
|
@ -34,6 +34,11 @@ a:hover {
|
|||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post-tags .tags a {
|
||||||
|
border: 1px solid #fff;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.header nav,
|
.header nav,
|
||||||
.footer {
|
.footer {
|
||||||
border-color: #333;
|
border-color: #333;
|
||||||
|
@ -283,6 +283,10 @@ ul {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post-tags a {
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
.post .post-header .meta {
|
.post .post-header .meta {
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
@ -297,6 +301,23 @@ ul {
|
|||||||
background-color: #f9f2f4;
|
background-color: #f9f2f4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post-tags .tags li {
|
||||||
|
margin-bottom: 0;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.post-tags .tags a {
|
||||||
|
display: inline-block;
|
||||||
|
border: 1px solid #a00;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 0px 6px;
|
||||||
|
color: #a00;
|
||||||
|
line-height: 20px;
|
||||||
|
font-size: 12px;
|
||||||
|
text-decoration: none;
|
||||||
|
margin: 0 1px;
|
||||||
|
}
|
||||||
|
|
||||||
.list .posts .post .meta {
|
.list .posts .post .meta {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
Loading…
Reference in New Issue
Block a user