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

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanzei <hanzei@mailbox.org>2018-07-06 15:27:34 +0300
committerHanzei <hanzei@mailbox.org>2018-07-06 15:31:16 +0300
commit088c65bac52435ba325696213172d083b58a799d (patch)
tree92d00449f5ef746bf7a8ab5499c70e7fbb1de679 /layouts/_default
parent32d393c2dfcf426a79be70824dfcfdd415105911 (diff)
Use Image Processing to resize images
Diffstat (limited to 'layouts/_default')
-rw-r--r--layouts/_default/baseof.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 857da38..479632d 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -7,6 +7,9 @@
{{ partial "head/favicons.html" . }}
{{ partial "head/css.html" . }}
{{ end }}
+ <!-- Include page specific css -->
+ {{ block "customCSS" . }}
+ {{ end }}
</head>
<body>
<div class="section" id="top">
@@ -32,5 +35,8 @@
{{ block "js-include" . }}
{{ partial "footer/scripts.html" . }}
{{ end }}
+ <!-- Include page specific scritps -->
+ {{ block "customScripts" . }}
+ {{ end }}
</body>
</html>