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

github.com/tosi29/inkblotty.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortosi29 <tosi16@gmail.com>2019-06-16 16:05:17 +0300
committertosi29 <tosi16@gmail.com>2019-06-16 16:05:17 +0300
commitb745aa5ac4066f75d665699e8d228c08ea0e2943 (patch)
tree56687bf3afe2582f5395f09d98840be05504f154
parent2713bab8f12939e566d68f2a40e9c2b9fad8c5ce (diff)
Fix css path in head.html
-rw-r--r--layouts/partials/head.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 1c717a6..05250d4 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -17,7 +17,7 @@
padding: 0 !important;
}
</style>
- <link rel='stylesheet' href='{{ "/css/style.css" | absURL }}' type='text/css' media='all' />
- <link rel='stylesheet' href='{{ "/css/custom.css" | absURL }}' type='text/css' media='all' />
+ <link rel='stylesheet' href='{{ "css/style.css" | absURL }}' type='text/css' media='all' />
+ <link rel='stylesheet' href='{{ "css/custom.css" | absURL }}' type='text/css' media='all' />
{{ template "_internal/google_analytics.html" . }}
</head> \ No newline at end of file