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

github.com/saey55/hugo-elate-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsaey55 <saey55@users.noreply.github.com>2016-12-02 00:54:35 +0300
committerGitHub <noreply@github.com>2016-12-02 00:54:35 +0300
commit8408dafba85b2dada25df29c20165c0718c9eded (patch)
tree0c9f26a023527ebf2bbe9a0255ac1c9f09207cd1
parent7e555091fb1dfab3c01abbd4908fb4460dcf8739 (diff)
parent1c7a0483ac1f780aa84ab6b4e62017c84e0dd2a6 (diff)
Merge pull request #6 from afelisatti/master
Allow testimonials sections to be parameterized.
-rwxr-xr-xlayouts/partials/testimonials.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/testimonials.html b/layouts/partials/testimonials.html
index ef4f80c..dbb56ff 100755
--- a/layouts/partials/testimonials.html
+++ b/layouts/partials/testimonials.html
@@ -2,10 +2,10 @@
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
- <h2 class="to-animate">Testimonials</h2>
+ <h2 class="to-animate">{{ with .Site.Params.testimonials.title }}{{ . | markdownify }}{{ end }}</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 subtext to-animate">
- <h3>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</h3>
+ <h3>{{ with .Site.Params.testimonials.description }}{{ . | markdownify }}{{ end }}</h3>
</div>
</div>
</div>