diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 5c3df9a..dc41751 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -31,6 +31,9 @@ summarylength = 25 # Site Params [params] logo = "images/logo.png" + logo_footer = "images/logo-footer.png" + favicon_icon = "images/favicon.ico" + favicon_shortcut_icon = "images/favicon.png" dateFormat = "26 FEB 1994" # Meta data description = "Roxo Hugo themes | Design Agency Template by StaticMania" @@ -74,10 +77,16 @@ summarylength = 25 secondary_button = "Connect with Us" secondary_button_url = "contact" + [params.blog] + read_more = "read more" + [params.portfolio] enable = true title = "OUR RECENT WORKS" subtitle = "Crafting experiences and seeking to make the complex clear & beautiful." + view_project = "view project" + more_works = "MORE WORKS" + scroll_down = "scroll down" [params.call_to_action] enable = true @@ -128,4 +137,6 @@ summarylength = 25 # Footer Service [params.footer.service] title = "We help brands:" - description = "develop design solutions
produce valuable cultural content
create fresh brand experience" \ No newline at end of file + description = "develop design solutions
produce valuable cultural content
create fresh brand experience" + [params.footer.back_to_top] + description = "I want to
visit again" diff --git a/layouts/blog/list.html b/layouts/blog/list.html index f1b16c3..10c78b6 100644 --- a/layouts/blog/list.html +++ b/layouts/blog/list.html @@ -30,7 +30,7 @@

{{ .Summary }} ...

- read more + {{ .Site.Params.blog.read_more }} @@ -46,4 +46,4 @@ {{ partial "call-to-action.html" . }} -{{ end }} \ No newline at end of file +{{ end }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 0658b18..8ca7ac5 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -2,7 +2,7 @@
- +
{{ with .Site.Params.footer.contactInfo }} @@ -71,4 +69,4 @@ {{ $vendor := resources.Get "js/vendor.js" | minify }} {{ $script := resources.Get "js/script.js" | minify }} - \ No newline at end of file + diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 9d2d48c..4e667a2 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -20,6 +20,6 @@ - - - \ No newline at end of file + + + diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 4188506..b525ee0 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,7 +1,7 @@
{{ end }}
- MORE WORKS + {{ .Site.Params.portfolio.more_works }}
{{ end }} -{{ end }} \ No newline at end of file +{{ end }} diff --git a/layouts/portfolio/list.html b/layouts/portfolio/list.html index 2b762cf..a5dde36 100644 --- a/layouts/portfolio/list.html +++ b/layouts/portfolio/list.html @@ -12,7 +12,7 @@
- Scroll Down + {{ .Site.Params.portfolio.scroll_down }} arrow-down
@@ -32,7 +32,7 @@
{{ delimit .Params.category ", " }}

{{ .Title }}

- view project + {{ .Site.Params.portfolio.view_project }}
@@ -48,4 +48,4 @@ {{ partial "call-to-action.html" . }} -{{ end }} \ No newline at end of file +{{ end }}