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

github.com/vividvilla/ezhil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVivek R <vividvilla@gmail.com>2019-04-11 15:39:27 +0300
committerVivek R <vividvilla@gmail.com>2019-04-11 15:39:27 +0300
commite9b2b8f64d295c0b24233fd7b62e5fd7536ba395 (patch)
tree8721a6c82963bf5f3537d87ad9a5f49ce8df54f3 /layouts
parent0acbe2865da64b7db006d529339c6ece53e1a3c3 (diff)
feat: add syntax highlight, Google analytics, Disqus and responseive view
Diffstat (limited to 'layouts')
-rw-r--r--layouts/_default/single.html4
-rw-r--r--layouts/index.html1
-rw-r--r--layouts/partials/header.html4
3 files changed, 7 insertions, 2 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 4e6b67f..0abbe00 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -13,8 +13,10 @@
<div class="markdown">
{{ .Content }}
</div>
+
+ {{ partial "disqus.html" . }}
</div>
{{ partial "footer.html" . }}
</body>
-</html> \ No newline at end of file
+</html>
diff --git a/layouts/index.html b/layouts/index.html
index a3fbfd8..bd08629 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -31,5 +31,6 @@
</div>
</div>
{{ partial "footer.html" . }}
+ {{ template "_internal/google_analytics_async.html" . }}
</body>
</html>
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 5cac3be..b3a22cd 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -12,9 +12,11 @@
{{- end -}}
<meta name="viewport" content="width=device-width, initial-scale=1">
+ {{ template "_internal/opengraph.html" . }}
+ {{ template "_internal/twitter_cards.html" . }}
<link href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,300italic,400italic|Raleway:500,100,300" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="/css/normalize.css" />
<link rel="stylesheet" type="text/css" media="screen" href="/css/main.css" />
<script src="main.js"></script>
-</head> \ No newline at end of file
+</head>