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

github.com/rafed/ramium.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafed Muhammad Yasir <rafed123@yahoo.com>2020-05-06 03:36:01 +0300
committerRafed Muhammad Yasir <rafed123@yahoo.com>2020-05-06 03:36:01 +0300
commit27a269076c204f78ac583f7766df146a14e1e324 (patch)
tree7981b6311fae8a9897ba3be993e9ffae66e9fd3d /layouts/_default/terms.html
parent7d26ead12878df96485b523b9b19ca0dd8d6640f (diff)
escaped html in brief, remove |humanize in tags and add |title, improved fonts
Diffstat (limited to 'layouts/_default/terms.html')
-rw-r--r--layouts/_default/terms.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/_default/terms.html b/layouts/_default/terms.html
index 261888e..f2d5b4a 100644
--- a/layouts/_default/terms.html
+++ b/layouts/_default/terms.html
@@ -1,14 +1,14 @@
{{ define "main" }}
<div class="content">
- <h1 class="title is-3">{{ .Title }}</h1>
+ <h1 class="title is-3">{{ .Title | title }}</h1>
<ul id="all-tags">
{{range sort (.Paginator .Site.Params.PaginateTagsPerPage).Pages.ByTitle }}
<li>
<a href="{{ .RelPermalink }}">
<span class="tag is-dark is-large is-rounded">
- {{ .Title | humanize}}
+ {{ .Title | title }}
</span>
</a>
</li>