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

github.com/frjo/hugo-theme-zen.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFredrik Jonsson <frjo@xdeb.org>2022-07-19 15:56:32 +0300
committerFredrik Jonsson <frjo@xdeb.org>2022-07-19 15:56:32 +0300
commit56d3c30a9830f728ac9a354e8b53b52a125be8f9 (patch)
tree67dd183322a256e9c171cea309d1463ff5bac8b9
parent4336c6b0368b6195d41ee32f46a266e116f5cbf8 (diff)
Replace use of add with path.Join for buildig paths.
-rw-r--r--layouts/partials/podcast.html2
-rw-r--r--layouts/podcast/rss.xml4
-rw-r--r--layouts/shortcodes/figure.html6
-rw-r--r--layouts/shortcodes/file.html2
-rw-r--r--layouts/shortcodes/img.html6
-rw-r--r--layouts/shortcodes/svg.html6
6 files changed, 13 insertions, 13 deletions
diff --git a/layouts/partials/podcast.html b/layouts/partials/podcast.html
index 034ed89..3fcd133 100644
--- a/layouts/partials/podcast.html
+++ b/layouts/partials/podcast.html
@@ -1,6 +1,6 @@
{{ $src := (.Params.podcast.mp3 | absURL) -}}
{{ if site.Params.Podcast.cdn -}}
-{{ $src = add site.Params.Podcast.cdn (.Params.podcast.mp3 | relURL) -}}
+{{ $src = path.Join site.Params.Podcast.cdn (.Params.podcast.mp3 | relURL) -}}
{{ end -}}
<figure class="podcast">
<audio controls preload="{{ site.Params.Podcast.preload | default "metadata" }}"><source src="{{ $src }}" type="audio/mpeg"></audio>
diff --git a/layouts/podcast/rss.xml b/layouts/podcast/rss.xml
index 3b6f452..29c79e0 100644
--- a/layouts/podcast/rss.xml
+++ b/layouts/podcast/rss.xml
@@ -49,9 +49,9 @@
{{ end -}}
<description>{{ .Content | html }}</description>
{{ if site.Params.Podcast.local | default true -}}
- {{ with .Params.podcast.mp3 }}{{ $file_stat := os.Stat (add "/static" (. | relURL)) }}<enclosure url="{{ if site.Params.Podcast.cdn }}{{ add site.Params.Podcast.cdn (. | relURL) }}{{ else }}{{ . | absURL }}{{ end }}" length="{{ $file_stat.Size }}" type="audio/mpeg" />{{ end }}
+ {{ with .Params.podcast.mp3 }}{{ $file_stat := os.Stat (path.Join "/static" (. | relURL)) }}<enclosure url="{{ if site.Params.Podcast.cdn }}{{ path.Join site.Params.Podcast.cdn (. | relURL) }}{{ else }}{{ . | absURL }}{{ end }}" length="{{ $file_stat.Size }}" type="audio/mpeg" />{{ end }}
{{ else -}}
- {{ with .Params.podcast.mp3 }}<enclosure url="{{ if site.Params.Podcast.cdn }}{{ add site.Params.Podcast.cdn (. | relURL) }}{{ else }}{{ . | absURL }}{{ end }}" type="audio/mpeg" />{{ end }}
+ {{ with .Params.podcast.mp3 }}<enclosure url="{{ if site.Params.Podcast.cdn }}{{ path.Join site.Params.Podcast.cdn (. | relURL) }}{{ else }}{{ . | absURL }}{{ end }}" type="audio/mpeg" />{{ end }}
{{ end -}}
{{ with .Params.podcast.duration }}<itunes:duration>{{ . }}</itunes:duration>{{ end }}
{{ with .Params.podcast.image.src }}{{ $image := resources.Get . }}<itunes:image href="{{ $image.Permalink }}" />{{ end }}
diff --git a/layouts/shortcodes/figure.html b/layouts/shortcodes/figure.html
index b94c6a6..372bd6c 100644
--- a/layouts/shortcodes/figure.html
+++ b/layouts/shortcodes/figure.html
@@ -14,7 +14,7 @@
{{ $maxwidth := site.Params.imageMaxWidth -}}
{{ $realwidth := 0 -}}
{{ $realheight := 0 -}}
-{{ if and $src (fileExists (add "/assets" $src)) -}}
+{{ if and $src (fileExists (path.Join "/assets" $src)) -}}
{{ $original := resources.Get $src -}}
{{ if $size -}}
{{ $image := $original.Resize $size -}}
@@ -34,8 +34,8 @@
{{ $width = "" -}}
{{ $height = "" -}}
{{ end -}}
-{{ else if and $src (fileExists (add "/static" $src)) -}}
- {{ with (imageConfig (add "/static" $src)) -}}
+{{ else if and $src (fileExists (path.Join "/static" $src)) -}}
+ {{ with (imageConfig (path.Join "/static" $src)) -}}
{{ $realwidth = .Width -}}
{{ $realheight = .Height -}}
{{ end -}}
diff --git a/layouts/shortcodes/file.html b/layouts/shortcodes/file.html
index c52f532..44402fa 100644
--- a/layouts/shortcodes/file.html
+++ b/layouts/shortcodes/file.html
@@ -2,7 +2,7 @@
{{ $newtab := .Get "newtab" | default false -}}
{{ $src := .Get "src" -}}
{{ $text := .Get "text" -}}
-{{ if and $src (fileExists (add "/assets" $src)) -}}
+{{ if and $src (fileExists (path.Join "/assets" $src)) -}}
{{ $original := resources.Get $src -}}
{{ $src = $original.RelPermalink -}}
{{ end -}}
diff --git a/layouts/shortcodes/img.html b/layouts/shortcodes/img.html
index c745e66..546d6f8 100644
--- a/layouts/shortcodes/img.html
+++ b/layouts/shortcodes/img.html
@@ -10,7 +10,7 @@
{{ $maxwidth := site.Params.imageMaxWidth -}}
{{ $realwidth := 0 -}}
{{ $realheight := 0 -}}
-{{ if and $src (fileExists (add "/assets" $src)) -}}
+{{ if and $src (fileExists (path.Join "/assets" $src)) -}}
{{ $original := resources.Get $src -}}
{{ if $size -}}
{{ $image := $original.Resize $size -}}
@@ -30,8 +30,8 @@
{{ $width = "" -}}
{{ $height = "" -}}
{{ end -}}
-{{ else if and $src (fileExists (add "/static" $src)) -}}
- {{ with (imageConfig (add "/static" $src)) -}}
+{{ else if and $src (fileExists (path.Join "/static" $src)) -}}
+ {{ with (imageConfig (path.Join "/static" $src)) -}}
{{ $realwidth = .Width -}}
{{ $realheight = .Height -}}
{{ end -}}
diff --git a/layouts/shortcodes/svg.html b/layouts/shortcodes/svg.html
index 5dee9f9..a32c21d 100644
--- a/layouts/shortcodes/svg.html
+++ b/layouts/shortcodes/svg.html
@@ -6,15 +6,15 @@
{{ $link := .Get "link" -}}
{{ $src := .Get "src" -}}
{{ $width := .Get "width" -}}
-{{ if and $src (fileExists (add "/assets" $src)) -}}
+{{ if and $src (fileExists (path.Join "/assets" $src)) -}}
{{ $original := resources.Get $src -}}
{{ if $inline -}}
{{ $src = $original.Content -}}
{{ else -}}
{{ $src = $original.RelPermalink -}}
{{ end -}}
-{{ else if and $src $inline (fileExists (add "/static" $src)) -}}
- {{ $src = readFile (add "/static" $src) -}}
+{{ else if and $src $inline (fileExists (path.Join "/static" $src)) -}}
+ {{ $src = readFile (path.Join "/static" $src) -}}
{{ end -}}
{{ if and $width $height -}}
{{ $width = int $width -}}