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

github.com/schmanat/hugo-highlights-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Schneider <manuel.schneider@schman.at>2016-11-25 09:27:17 +0300
committerManuel Schneider <manuel.schneider@schman.at>2016-11-25 09:27:17 +0300
commit2389fdeae8f294248dd56a2141e1e30a1b77da76 (patch)
treeec30a4692a8ce0a306f5de7fe97700e1536ed4a0
parentcfbca427a3226a8d16400e5674c0486db053feda (diff)
change camelcase to lowercase to prevent issue #3
-rw-r--r--exampleSite/config.toml8
-rw-r--r--layouts/partials/about.html2
-rw-r--r--layouts/partials/footer-contact.html2
-rw-r--r--layouts/partials/hero.html2
-rw-r--r--layouts/partials/infos.html2
-rw-r--r--layouts/partials/skills.html2
6 files changed, 9 insertions, 9 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 6f1d21a..077e080 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -36,14 +36,14 @@ googleAnalytics = ""
[params.hero]
title = "Highlights"
description = "a fun litte { responsive } single Pager by [HTML5UP](//html5up.net)"
- buttonText = "begin"
+ buttontext = "begin"
# about section
[params.about]
enable = true
title = "Who am I"
description = "Aliquam ante ac id. Adipiscing interdum lorem praesent fusce pellentesque arcu feugiat. Consequat sed ultricies rutrum. Sed adipiscing eu amet interdum lorem blandit vis ac commodo aliquet integer vulputate phasellus lorem ipsum dolor lorem magna consequat sed etiam adipiscing interdum."
- buttonText = "next"
+ buttontext = "next"
# the picture is storead at static/images/
picture = "pic01.jpg"
@@ -52,7 +52,7 @@ googleAnalytics = ""
enable = true
title = "Stuff I do"
description = "Consequat sed ultricies rutrum. Sed adipiscing eu amet interdum lorem blandit vis ac commodo aliquet vulputate."
- buttonText = "next"
+ buttontext = "next"
# the picture is storead at static/images/
picture = "pic02.jpg"
@@ -99,7 +99,7 @@ googleAnalytics = ""
name = "Name"
email = "Your Email"
message = "Your Message"
- buttonText = "send message"
+ buttontext = "send message"
# social icons
[params.footer.social_list]
diff --git a/layouts/partials/about.html b/layouts/partials/about.html
index de26d19..5729706 100644
--- a/layouts/partials/about.html
+++ b/layouts/partials/about.html
@@ -9,6 +9,6 @@
</header>
<p>{{ with .Site.Params.about.description }}{{ . | markdownify }}{{ end }}</p>
</div>
- <a href="#skills" class="goto-next scrolly">{{ with .Site.Params.about.buttonText }}{{ . | markdownify }}{{ end }}</a>
+ <a href="#skills" class="goto-next scrolly">{{ with .Site.Params.about.buttontext }}{{ . | markdownify }}{{ end }}</a>
</div>
</section>
diff --git a/layouts/partials/footer-contact.html b/layouts/partials/footer-contact.html
index c90d0c6..2e4b302 100644
--- a/layouts/partials/footer-contact.html
+++ b/layouts/partials/footer-contact.html
@@ -9,7 +9,7 @@
<div class="12u$"><textarea name="message" id="message" placeholder="{{ with .Site.Params.footer.contact.form.message }}{{ . }}{{ end }}" rows="4"></textarea></div>
<div class="12u$">
<ul class="actions">
- <li><input type="submit" value="{{ with .Site.Params.footer.contact.form.buttonText }}{{ . }}{{ end }}" class="special" /></li>
+ <li><input type="submit" value="{{ with .Site.Params.footer.contact.form.buttontext }}{{ . }}{{ end }}" class="special" /></li>
</ul>
</div>
</div>
diff --git a/layouts/partials/hero.html b/layouts/partials/hero.html
index 1adc574..40c2357 100644
--- a/layouts/partials/hero.html
+++ b/layouts/partials/hero.html
@@ -6,7 +6,7 @@
</header>
<div class="container">
<ul class="actions">
- <li><a href="#about" class="button special scrolly">{{ with .Site.Params.hero.buttonText }} {{ . | markdownify }} {{ end }}</a></li>
+ <li><a href="#about" class="button special scrolly">{{ with .Site.Params.hero.buttontext }} {{ . | markdownify }} {{ end }}</a></li>
</ul>
</div>
</section>
diff --git a/layouts/partials/infos.html b/layouts/partials/infos.html
index eed01a0..7b0523b 100644
--- a/layouts/partials/infos.html
+++ b/layouts/partials/infos.html
@@ -8,6 +8,6 @@
</header>
<p>{{ with .Site.Params.infos.description }}{{ . | markdownify }}{{ end }}</p>
</div>
- <a href="#footer" class="goto-next scrolly">{{ with .Site.Params.infos.buttonText }}{{ . | markdownify }}{{ end }}</a>
+ <a href="#footer" class="goto-next scrolly">{{ with .Site.Params.infos.buttontext }}{{ . | markdownify }}{{ end }}</a>
</div>
</section>
diff --git a/layouts/partials/skills.html b/layouts/partials/skills.html
index 4cc7ab0..8c0f081 100644
--- a/layouts/partials/skills.html
+++ b/layouts/partials/skills.html
@@ -16,6 +16,6 @@
{{ end }}
</ul>
</div>
- <a href="#infos" class="goto-next scrolly">{{ with .Site.Params.skill_list.buttonText }}{{ . | markdownify }}{{ end }}</a>
+ <a href="#infos" class="goto-next scrolly">{{ with .Site.Params.skill_list.buttontext }}{{ . | markdownify }}{{ end }}</a>
</div>
</section>