mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-08 18:44:24 +00:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
76e0040505 | ||
![]() |
d3baf1a86a | ||
![]() |
681bf636dc | ||
![]() |
607b5e3fec |
@@ -3,7 +3,7 @@ author: "Hugo Authors"
|
|||||||
title: "Rich Content"
|
title: "Rich Content"
|
||||||
date: 2021-07-13
|
date: 2021-07-13
|
||||||
description: "A brief description of Hugo Shortcodes"
|
description: "A brief description of Hugo Shortcodes"
|
||||||
tags: ["shortcodes", "privacy"]
|
tags: ["shortcode", "privacy"]
|
||||||
thumbnail: img/flowers.jpg # https://picsum.photos/id/106/2592/1728
|
thumbnail: img/flowers.jpg # https://picsum.photos/id/106/2592/1728
|
||||||
photoCredits: <a href="https://unsplash.com/@flutterhappy">Arvee Marie</a>
|
photoCredits: <a href="https://unsplash.com/@flutterhappy">Arvee Marie</a>
|
||||||
photoSource: <a href="https://unsplash.com/photos/YnfGtpt2gf4">Unsplash</a>
|
photoSource: <a href="https://unsplash.com/photos/YnfGtpt2gf4">Unsplash</a>
|
||||||
|
@@ -4,7 +4,7 @@ slug: "multimedia"
|
|||||||
title: "Multimedia"
|
title: "Multimedia"
|
||||||
date: 2021-07-13
|
date: 2021-07-13
|
||||||
description: "Een overzicht van enkele Hugo Shortcodes"
|
description: "Een overzicht van enkele Hugo Shortcodes"
|
||||||
tags: ["shortcodes", "privacy"]
|
tags: ["shortcode", "privacy"]
|
||||||
thumbnail: img/flowers.jpg # https://picsum.photos/id/106/2592/1728
|
thumbnail: img/flowers.jpg # https://picsum.photos/id/106/2592/1728
|
||||||
photoCredits: <a href="https://unsplash.com/@flutterhappy">Arvee Marie</a>
|
photoCredits: <a href="https://unsplash.com/@flutterhappy">Arvee Marie</a>
|
||||||
photoSource: <a href="https://unsplash.com/photos/YnfGtpt2gf4">Unsplash</a>
|
photoSource: <a href="https://unsplash.com/photos/YnfGtpt2gf4">Unsplash</a>
|
||||||
|
@@ -10,8 +10,8 @@
|
|||||||
{{- partial "utilities/date.html" (dict "date" .Date "format" "long") -}}
|
{{- partial "utilities/date.html" (dict "date" .Date "format" "long") -}}
|
||||||
• {{ .ReadingTime }} {{ i18n "minutesShort" }} {{ i18n "read" }}
|
• {{ .ReadingTime }} {{ i18n "minutesShort" }} {{ i18n "read" }}
|
||||||
{{ if isset .Params "tags" -}}
|
{{ if isset .Params "tags" -}}
|
||||||
{{ range first 1 .Params.tags -}}
|
{{ range first 1 (.GetTerms "tags") -}}
|
||||||
• <a href="{{ $.Site.BaseURL }}tags/{{ . | urlize }}" class="text-decoration-none text-primary" aria-label="Tag: {{ . }}">{{ . }}</a>
|
• <a href="{{ (path.Join .Page.RelPermalink) | relURL }}" class="text-decoration-none text-primary" aria-label="Tag: {{ .LinkTitle }}">{{ .LinkTitle }}</a>
|
||||||
{{ end -}}
|
{{ end -}}
|
||||||
{{ end -}}
|
{{ end -}}
|
||||||
</small>
|
</small>
|
||||||
|
@@ -9,9 +9,9 @@
|
|||||||
|
|
||||||
{{ if isset .Params "tags" }}
|
{{ if isset .Params "tags" }}
|
||||||
<small class="text-muted text-uppercase">
|
<small class="text-muted text-uppercase">
|
||||||
{{ range $index, $element := .Params.tags }}
|
{{ range $index, $element := (.GetTerms "tags") }}
|
||||||
{{ if gt $index 0 }}• {{ end }}
|
{{ if gt $index 0 }}• {{ end }}
|
||||||
<a href="{{ $.Site.BaseURL }}tags/{{ . | urlize }}" class="text-decoration-none text-primary" aria-label="Tag: {{ . }}">{{ . }}</a>
|
<a href="{{ (path.Join .Page.RelPermalink) | relURL }}" class="text-decoration-none text-primary" aria-label="Tag: {{ .LinkTitle }}">{{ .LinkTitle }}</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</small>
|
</small>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@markdumay/hugo-theme-hinode",
|
"name": "@markdumay/hugo-theme-hinode",
|
||||||
"version": "0.7.5",
|
"version": "0.7.6",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@markdumay/hugo-theme-hinode",
|
"name": "@markdumay/hugo-theme-hinode",
|
||||||
"version": "0.7.5",
|
"version": "0.7.6",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@markdumay/hugo-theme-hinode",
|
"name": "@markdumay/hugo-theme-hinode",
|
||||||
"version": "0.7.5",
|
"version": "0.7.6",
|
||||||
"description": "Hinode is a clean blog theme for Hugo, an open-source static site generator",
|
"description": "Hinode is a clean blog theme for Hugo, an open-source static site generator",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
|
Reference in New Issue
Block a user