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

github.com/siegerts/hugo-theme-basic.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Siegert <stephen.siegert@sas.com>2019-02-07 01:57:25 +0300
committerStephen Siegert <stephen.siegert@sas.com>2019-02-07 01:57:25 +0300
commitd4cbdc6808346a7974abf17f66f7f2070343959d (patch)
tree41f49ad22e5830389c747c0b6bab8b8c377a0301
parent4b657b1ab3fb8a617267c7f283805b016ebce0ce (diff)
list mods and move ga template
-rw-r--r--layouts/_default/list.html4
-rw-r--r--layouts/partials/head_includes.html2
-rw-r--r--layouts/partials/scripts.html2
3 files changed, 4 insertions, 4 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 3cda7e9..1f48c85 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -12,8 +12,8 @@
<section id="main" class="mt5">
<div>
<!-- <h1 id="title">{{ .Title }}</h1> -->
+ <ul id="list" class="pl0"></ul>
{{ range.Data.Pages }}
- <ul id="list" class="pl0">
<li class="list pl0 lh-copy">
<a
class="f3 b dib pa1 black no-underline"
@@ -22,8 +22,8 @@
>
<span class="f6 gray">{{ .Date.Format "January 2, 2006" }}</span>
</li>
- </ul>
{{ end }}
+ </ul>
</div>
</section>
diff --git a/layouts/partials/head_includes.html b/layouts/partials/head_includes.html
index 21cd58c..c4e09f4 100644
--- a/layouts/partials/head_includes.html
+++ b/layouts/partials/head_includes.html
@@ -9,3 +9,5 @@
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/highlightjs@9.12.0/styles/github-gist.css"
/>
+
+{{ template "_internal/google_analytics_async.html" . }}
diff --git a/layouts/partials/scripts.html b/layouts/partials/scripts.html
index 34349a9..0e5cf90 100644
--- a/layouts/partials/scripts.html
+++ b/layouts/partials/scripts.html
@@ -1,7 +1,5 @@
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.14.2/highlight.min.js"></script>
-{{ template "_internal/google_analytics_async.html" . }}
-
<script>
hljs.initHighlightingOnLoad();
</script>