mirror of
https://github.com/GuerillaStudio/now-playing
synced 2025-01-02 01:01:56 +00:00
Add credit to hosting provider in footer
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
77649c7b01
commit
432e4779e2
3 changed files with 14 additions and 1 deletions
|
@ -12,6 +12,11 @@ disableKinds = ["taxonomy"]
|
||||||
[params.creator]
|
[params.creator]
|
||||||
name = "Guérilla.Studio"
|
name = "Guérilla.Studio"
|
||||||
url = "https://guerilla.studio"
|
url = "https://guerilla.studio"
|
||||||
|
[params.hosting]
|
||||||
|
name = "Deuxfleurs"
|
||||||
|
url = "https://deuxfleurs.fr"
|
||||||
|
prefixtext = "Big thanks to"
|
||||||
|
suffixtext = "for providing an eco-responsible and distributed web hosting."
|
||||||
|
|
||||||
[imaging]
|
[imaging]
|
||||||
quality = 95
|
quality = 95
|
||||||
|
|
|
@ -25,4 +25,12 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{{ if (and (isset .Site.Params.hosting "url") (isset .Site.Params.hosting "name")) }}
|
||||||
|
<div class="mt2">
|
||||||
|
{{ if isset .Site.Params.hosting "prefixtext" }} {{ .Site.Params.hosting.prefixtext }} {{ else }} Thanks to {{ end }}
|
||||||
|
<a href="{{ .Site.Params.hosting.url }}" class="semibold">{{ .Site.Params.hosting.name }}</a>
|
||||||
|
{{ if isset .Site.Params.hosting "suffixtext" }} {{ .Site.Params.hosting.suffixtext }} {{ else }} for hosting this site. {{ end }}
|
||||||
|
</div>
|
||||||
|
{{ end}}
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "now-playing",
|
"name": "now-playing",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"license": "SEE LICENSE IN ./LICENSE",
|
"license": "SEE LICENSE IN ./LICENSE",
|
||||||
"description": "Collection of Handpicked Albums by Guérilla.Studio",
|
"description": "Collection of Handpicked Albums by Guérilla.Studio",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
Loading…
Reference in a new issue