We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13ffafe commit dddf8deCopy full SHA for dddf8de
layouts/_default/baseof.html
@@ -7,6 +7,10 @@
7
{{- partial "head/style.html" . -}}
8
{{- end -}}
9
10
+
11
+ {{- if templates.Exists "partials/extend_head.html" -}}
12
+ {{- partial "extend_head.html" . -}}
13
+ {{- end -}}
14
</head>
15
16
<body>
@@ -63,5 +67,9 @@ <h1 class="post-title">{{ .Title | plainify }}</h1>
63
67
64
68
<script type="text/javascript" src="{{ $bundle.RelPermalink }}"></script>
65
69
70
71
+ {{- if templates.Exists "partials/extend_footer.html" -}}
72
+ {{- partial "extend_footer.html" . -}}
73
66
74
</body>
75
</html>
0 commit comments