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

github.com/yihui/hugo-xmag.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYihui Xie <xie@yihui.name>2017-07-19 21:20:10 +0300
committerYihui Xie <xie@yihui.name>2017-07-19 21:20:10 +0300
commitc8d28c33b69730824a1d40bd9a637197613bd033 (patch)
tree6ba56fb67fbe4a7119b6eb35b4949f01a3d2c7aa
parent387d986b366b924aea6773ada9f8d3ddb6b3d798 (diff)
remove an extra space after Tags:
-rw-r--r--layouts/_default/single.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index ff93aec..62f1c83 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -16,7 +16,7 @@
{{ end }}
{{ with .Params.tags }}
- <p>{{ default "Tags: " (index $.Site.Params.text "tags") }} {{ range $i, $e := . }}{{ if $i }}; {{ end }}<a href="{{ relURL (print "/tags/" $e | urlize) }}">{{ $e }}</a>{{ end }}
+ <p>{{ default "Tags: " (index $.Site.Params.text "tags") }}{{ range $i, $e := . }}{{ if $i }}; {{ end }}<a href="{{ relURL (print "/tags/" $e | urlize) }}">{{ $e }}</a>{{ end }}
</p>
{{ end }}
{{ partial "meta.html" . }}