added option to disable tags in article preview

This commit is contained in:
Gabriele Musco 2021-04-19 11:42:35 +02:00
parent 2535186101
commit 3631685b4d
No known key found for this signature in database
GPG Key ID: 8539FD3454380B83
4 changed files with 12 additions and 10 deletions

View File

@ -55,6 +55,7 @@ summaryLength = 70 # number of words for article summaries
discreteCards = false # enable discrete card style; default false
discreteTags = false # enable discrete tag style; default false
tagsInArticlePreview = true # enable tags list in the article preview card
gridView = false # show post list as a grid. goes well with discreteCards
highlightBgColor = "#34363b" # card and circle navigation background color for discrete card mode

View File

@ -6,7 +6,7 @@
<p class="date">
<span title="Date"></span>
{{ .Date.Format "2006-01-02" }}
{{ if .Params.tags }}
{{ if and (site.Params.tagsInArticlePreview | default true) .Params.tags }}
| <!-- Pipe character as visual separator between date and tags-->
<span title="Tags"></span>
{{ range .Params.tags }}

View File

@ -14,7 +14,7 @@
<p class="date">
<span title="Date"></span>
{{ .Date.Format "2006-01-02" }}
{{ if .Params.tags }}
{{ if and (site.Params.tagsInArticlePreview | default true) .Params.tags }}
<br />
<span title="Tags"></span>
{{ range .Params.tags }}

View File

@ -1,12 +1,11 @@
<script>
function renderTags(tags) {
if (tags.length <= 0) return '';
let res = '| <span title="tags"></span>';
for (let tag of tags) {
res += `<a href="/tags/${tag}">#${tag}</a>
`;
}
return res;
if (tags.length <= 0) return '';
let res = '| <span title="tags"></span>';
for (let tag of tags) {
res += `<a href="/tags/${tag}">#${tag}</a>`;
}
return res;
}
function renderImage(image) {
if (!image) return '';
@ -22,7 +21,9 @@
<p class="date">
<span title="Date"></span>
${article.date}
${renderTags(article.tags)}
{{ if (.Site.Params.tagsInArticlePreview | default true) }}
${renderTags(article.tags)}
{{ end }}
</p>
{{ if .Site.Params.imageInArticlePreview }}
${renderImage(article.image)}