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

github.com/zzzmisa/hugo-theme-doors.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzzzmisa <zzzmisa.office@gmail.com>2022-02-03 18:40:11 +0300
committerzzzmisa <zzzmisa.office@gmail.com>2022-02-03 18:40:11 +0300
commite2dbbe8510deb867da908925b3ed4ab90a6796f6 (patch)
treeb50dbeba0ac41ad96abf9567f9f3bb7c4942a7cb
parente132daf64984064ebd841ecd18cf6b4da0f3879c (diff)
Make it possible to use lowercase in titles
-rw-r--r--layouts/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/index.html b/layouts/index.html
index f1fca3d..cb88635 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -85,7 +85,7 @@
<amp-img width="{{ .w }}" height="{{ .h }}" layout="responsive" src="{{ .image }}"></amp-img>
{{ if or .title .description }}
<header class="absolute bottom-0 right-0 left-0 center m3 p3">
- <h3 class="caps bold">{{ .title }}</h3>
+ <h3 class="bold">{{ .title }}</h3>
<h1 class="h2 my1">{{ .description }}</h1>
</header>
{{ end }}
@@ -102,7 +102,7 @@
<figure class="ampstart-image-with-caption m0 relative mb4">
<amp-img width="{{ .w }}" height="{{ .h }}" layout="responsive" src="{{ .image }}"></amp-img>
<figcaption class="h5 mt1 px3">
- <h3 class="caps bold">{{ .title }}</h3>
+ <h3 class="bold">{{ .title }}</h3>
{{ .description }}
</figcaption>
</figure>