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

github.com/runningstream/hugograyscale.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrunningstream <runningstreamllc@gmail.com>2020-01-25 01:25:58 +0300
committerrunningstream <runningstreamllc@gmail.com>2020-01-25 01:25:58 +0300
commit3e6abb500f4f8aa53dfb150977965e25fc49d5d3 (patch)
treea551aca7267c0cd54fdf9082e534e1af82c1b236 /layouts
parent6cd1cd072d91c01301a1a32a9441c29801f86485 (diff)
Fix incorrect site and relURL issue
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/footer.html8
-rw-r--r--layouts/partials/head.html6
2 files changed, 7 insertions, 7 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index fc2fda3..fc10352 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -6,11 +6,11 @@
</footer>
<!-- Bootstrap core JavaScript -->
- <script src="{{ "vendor/jquery/jquery.min.js" | relURL }}"></script>
- <script src="{{ "vendor/bootstrap/js/bootstrap.bundle.min.js" | relURL }}"></script>
+ <script src="{{ "vendor/jquery/jquery.min.js" | absURL }}"></script>
+ <script src="{{ "vendor/bootstrap/js/bootstrap.bundle.min.js" | absURL }}"></script>
<!-- Plugin JavaScript -->
- <script src="{{ "vendor/jquery-easing/jquery.easing.min.js" | relURL }}"></script>
+ <script src="{{ "vendor/jquery-easing/jquery.easing.min.js" | absURL }}"></script>
{{- if isset $.Params "mapsapikey" -}}
<!-- Google Maps API Key - Use your own API key to enable the map feature. More information on the Google Maps API can be found at https://developers.google.com/maps/ -->
@@ -18,4 +18,4 @@
{{- end -}}
<!-- Custom scripts for this template -->
- <script src="{{ "js/grayscale.min.js" | relURL}}"></script>
+ <script src="{{ "js/grayscale.min.js" | absURL}}"></script>
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 31bf7b9..990277e 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -16,14 +16,14 @@
<meta name="generator" content="Hugo {{ hugo.Version }}">
<!-- Bootstrap core CSS -->
- <link href="{{ "vendor/bootstrap/css/bootstrap.min.css" | relURL }}" rel="stylesheet">
+ <link href="{{ "vendor/bootstrap/css/bootstrap.min.css" | absURL }}" rel="stylesheet">
<!-- Custom fonts for this template -->
- <link href="{{ "vendor/font-awesome/css/font-awesome.min.css" | relURL }}" rel="stylesheet" type="text/css">
+ <link href="{{ "vendor/font-awesome/css/font-awesome.min.css" | absURL }}" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Cabin:700' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
- <link href="{{ "css/grayscale.css" | relURL }}" rel="stylesheet">
+ <link href="{{ "css/grayscale.css" | absURL }}" rel="stylesheet">
{{ template "_internal/google_analytics_async.html" . }}