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:
authorVicky <vicky@vickylai.io>2017-06-16 13:30:47 +0300
committerVicky <vicky@vickylai.io>2017-06-16 13:30:47 +0300
commit15c9ac327446dcc8e97bb3c4cdb999949d905bae (patch)
tree578ab93c0dc525d75485ae47ff60c950752783af
parenta1536d876f608c27b297f8e73d64916a1448fc97 (diff)
Missing closing body tags prevented LiveReload:
-rw-r--r--layouts/_default/list.html2
-rw-r--r--layouts/blog/single.html2
2 files changed, 4 insertions, 0 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 28fb152..a6fa55a 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -62,3 +62,5 @@ $('a[href^="{{ .Permalink }}#"]').click(function(e) {
return false;
})
</script>
+
+</body> \ No newline at end of file
diff --git a/layouts/blog/single.html b/layouts/blog/single.html
index e51c674..bb71683 100644
--- a/layouts/blog/single.html
+++ b/layouts/blog/single.html
@@ -77,3 +77,5 @@ $('a[href^="{{ .Permalink }}#"]').click(function(e) {
return false;
})
</script>
+
+</body> \ No newline at end of file