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

github.com/GDGToulouse/devfest-theme-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvia <sylvie@gmail.com>2021-09-15 14:21:24 +0300
committerSylvia <sylvie@gmail.com>2021-09-15 14:21:24 +0300
commit7e493fdb7a4334df10149810160e407341565329 (patch)
treec5a2908e02ff7e4bc6b4da11f02f79a1fa2ccb4c
parent577ebf8506b5ee4a4c580132c6363c5bf7865910 (diff)
Remove extra slash from js, css import urls
-rw-r--r--layouts/partials/scripts.html2
-rw-r--r--layouts/partials/stylesheets.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/scripts.html b/layouts/partials/scripts.html
index f410030..1522765 100644
--- a/layouts/partials/scripts.html
+++ b/layouts/partials/scripts.html
@@ -1 +1 @@
-<script src="{{ .Site.BaseURL }}/theme.js" async></script>
+<script src="{{ .Site.BaseURL }}theme.js" async></script>
diff --git a/layouts/partials/stylesheets.html b/layouts/partials/stylesheets.html
index a9ae2f3..3af837a 100644
--- a/layouts/partials/stylesheets.html
+++ b/layouts/partials/stylesheets.html
@@ -1 +1 @@
-<link rel="stylesheet" href="{{ .Site.BaseURL }}/theme.css" media="all">
+<link rel="stylesheet" href="{{ .Site.BaseURL }}theme.css" media="all">