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

github.com/mrmierzejewski/hugo-theme-console.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Doherty <chris.doherty@alteryx.com>2020-05-13 00:24:28 +0300
committerChris Doherty <chris.doherty@alteryx.com>2020-05-13 00:24:28 +0300
commit9b6ed080ee09384bdb8f8f0d7936f82f930a5397 (patch)
treeb3f7515819dd87b4ee5e8d196f9e86c681733074
parentf2ef6d4161516e0df86c9e470079a706de279ef0 (diff)
Allow addition of custom stylesheets and scripts
-rw-r--r--layouts/_default/baseof.html2
-rw-r--r--layouts/partials/header.html1
2 files changed, 3 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 381f759..a322e0c 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -25,6 +25,8 @@
{{- partial "opengraph.html" . -}}
{{- partial "twitter_cards.html" . -}}
{{ template "_internal/google_analytics.html" . }}
+
+ {{- partial "header.html" . -}}
</head>
<body class="terminal">
<div class="container">
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..57cdd09
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1 @@
+<!-- Keep - override to add code to <header /> tag -->