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@users.noreply.github.com>2018-06-10 02:30:15 +0300
committerVicky Lai <vicky@vickylai.com>2018-06-10 02:30:15 +0300
commit45420243599e3899afdec61fef5f835df47d98a0 (patch)
tree14fe56b1384c64d4e84b924a13111d0ba645409b /layouts/_default/single.html
parent71a72311ac2302d6d9632853535d471416923f75 (diff)
Fix rel URLs (#50)
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html10
1 files changed, 4 insertions, 6 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 600b50f..618dc76 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -12,7 +12,6 @@
<!-- Everything below fades in two! -->
<div class="section {{ if .Site.Params.fadeIn }} fade-in two {{ end }}">
-
<div class="container">
<!-- Begin Nav bar -->
{{ partial "nav-single.html" . }}
@@ -23,10 +22,9 @@
<!-- Begin blog post content -->
{{ if .Params.image }}
<div class="has-text-centered">
- <img src="{{ .Params.image }}" class="img-responsive">
+ <img src="{{ .Params.image }}" class="img-responsive">
</div>
- {{ end }}
-
+ {{ end }}
{{ .Content }}
</div>
<!-- End blog post content -->
@@ -37,7 +35,7 @@
<div class="container has-text-centered top-pad">
<hr>
- <a href="{{ .Permalink }}#top">
+ <a href="#top">
<i class="fa fa-arrow-up"></i>
</a>
<hr>
@@ -61,4 +59,4 @@
})
</script>
-</body> \ No newline at end of file
+</body>