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

github.com/de-souza/hugo-flex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorde-souza <43355143+de-souza@users.noreply.github.com>2019-11-16 02:18:01 +0300
committerde-souza <43355143+de-souza@users.noreply.github.com>2019-11-16 02:18:01 +0300
commit7943e869e406dff965e2e5cea4639ad904c8a83b (patch)
tree8b063a0cf08ba3646eea9fecaba032d167c505e7
parentb0e9513e975f22592bd3995197e9e2ae3cdcb19f (diff)
Fix double space
-rw-r--r--README.md2
-rw-r--r--layouts/shortcodes/soundcloud.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 59a2180..ad9a360 100644
--- a/README.md
+++ b/README.md
@@ -139,7 +139,7 @@ As an example here is the shortcode template for the on-click Soundcloud player:
```html
{{ resources.Get "css/soundcloud.css" | minify | fingerprint | .Page.Scratch.SetInMap "css" "soundcloud" }}
-{{ resources.Get "js/soundcloud.js" | minify | fingerprint | .Page.Scratch.SetInMap "js" "soundcloud" }}
+{{ resources.Get "js/soundcloud.js" | minify | fingerprint | .Page.Scratch.SetInMap "js" "soundcloud" }}
<div class="Soundcloud" data-id="{{ .Get 0 }}"></div>
```
diff --git a/layouts/shortcodes/soundcloud.html b/layouts/shortcodes/soundcloud.html
index 504770f..6c9c0bc 100644
--- a/layouts/shortcodes/soundcloud.html
+++ b/layouts/shortcodes/soundcloud.html
@@ -1,3 +1,3 @@
{{ resources.Get "css/soundcloud.css" | minify | fingerprint | .Page.Scratch.SetInMap "css" "soundcloud" }}
-{{ resources.Get "js/soundcloud.js" | minify | fingerprint | .Page.Scratch.SetInMap "js" "soundcloud" }}
+{{ resources.Get "js/soundcloud.js" | minify | fingerprint | .Page.Scratch.SetInMap "js" "soundcloud" }}
<div class="Soundcloud" data-id="{{ .Get 0 }}"></div>