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

github.com/SteveLane/hugo-icon.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Paul <anthonypaul@gmail.com>2018-05-29 16:25:55 +0300
committerAnthony Paul <anthonypaul@gmail.com>2018-05-29 16:25:55 +0300
commit2b0deb1969685048771b3d6df82b90c906c38099 (patch)
tree526fa00719807194573b98c31fe618363eccc2b7
parent82e8cd945000e744692838aa8ed33ec210e4b32f (diff)
Added some missing markdownify
-rwxr-xr-xlayouts/partials/gallery.html2
-rwxr-xr-xlayouts/partials/mission.html4
-rwxr-xr-xlayouts/partials/services.html4
3 files changed, 5 insertions, 5 deletions
diff --git a/layouts/partials/gallery.html b/layouts/partials/gallery.html
index 0eb9c95..b25e41b 100755
--- a/layouts/partials/gallery.html
+++ b/layouts/partials/gallery.html
@@ -6,7 +6,7 @@
<div class="fh5co-copy-inner">
<h2>{{ .title }}</h2>
{{ if isset . "subtitle" }}
- <h3>{{ .subtitle }}</h3>
+ <h3>{{ .subtitle | markdownify }}</h3>
{{ end }}
</div>
</div>
diff --git a/layouts/partials/mission.html b/layouts/partials/mission.html
index c881b6b..d09bf65 100755
--- a/layouts/partials/mission.html
+++ b/layouts/partials/mission.html
@@ -7,7 +7,7 @@
<ul class="fh5co-tabs fh5co-three">
{{ range .Site.Params.mission.item }}
{{ if eq .weight 1}}<li class="active">{{ else }}<li>{{ end }}
- <a href="#" data-tab={{ .name }}>{{ .title }}</a>
+ <a href="#" data-tab={{ .name }}>{{ .title | markdownify }}</a>
</li>
{{ end }}
</ul>
@@ -18,7 +18,7 @@
{{ else }}
<div class="fh5co-tab-content" data-tab-content={{ .name }}>
{{ end }}
- <h2>{{ .subtitle }}</h2>
+ <h2>{{ .subtitle | markdownify }}</h2>
{{ .description | markdownify }}
</div>
{{ end }}
diff --git a/layouts/partials/services.html b/layouts/partials/services.html
index e1e03a8..28e9793 100755
--- a/layouts/partials/services.html
+++ b/layouts/partials/services.html
@@ -5,7 +5,7 @@
{{ end }}
<div class="container">
<div class="col-md-6 col-md-offset-3 text-center fh5co-heading">
- <h2>{{ .title }}</h2>
+ <h2>{{ .title | markdownify }}</h2>
<p>{{ .description | markdownify }}</p>
</div>
@@ -13,7 +13,7 @@
<div class="col-md-4">
<div class="service">
<div class="icon"><i class={{ .icon }}></i></div>
- <h3>{{ .title }}</h3>
+ <h3>{{ .title | markdownify }}</h3>
<p>{{ .description | markdownify }}</p>
</div>
</div>