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:
authorSteve Lane <SteveLane@users.noreply.github.com>2018-05-30 03:35:48 +0300
committerGitHub <noreply@github.com>2018-05-30 03:35:48 +0300
commit573f7217b0c6ec0375ff7c42cc1eb97f2b09f68d (patch)
tree96cc0292fcebcd0c76eb4a069cd43513c4a75f41
parent82e8cd945000e744692838aa8ed33ec210e4b32f (diff)
parent8d528f258734c8b9bcd0eac61320bf5b0d7f6e95 (diff)
Merge pull request #16 from avpavp/missingMarkdownify
Missing markdownify
-rwxr-xr-xlayouts/partials/gallery.html4
-rwxr-xr-xlayouts/partials/mission.html4
-rwxr-xr-xlayouts/partials/services.html4
3 files changed, 6 insertions, 6 deletions
diff --git a/layouts/partials/gallery.html b/layouts/partials/gallery.html
index 0eb9c95..30fe3b5 100755
--- a/layouts/partials/gallery.html
+++ b/layouts/partials/gallery.html
@@ -4,9 +4,9 @@
<div class="fh5co-overlay"></div>
<div class="fh5co-copy">
<div class="fh5co-copy-inner">
- <h2>{{ .title }}</h2>
+ <h2>{{ .title | markdownify }}</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>