diff --git a/assets/css/theme.scss b/assets/css/theme.scss index 3c03cbc..0d6312c 100644 --- a/assets/css/theme.scss +++ b/assets/css/theme.scss @@ -273,3 +273,14 @@ a.fn-item { .site-footer a:hover { color: var(--sticky-menu-text-color); } + +/* Bottom Icons */ +.icons { + ol { + padding-left: 0; + } + + li { + display: inline-block; + } +} diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 15aba0d..e0b4f71 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -51,5 +51,13 @@ title = "Jane Doe - Nutrition Coach & Chef Consultant" # The sections of the home page alternate styling. Mark invert as true to swap the styling of the sections invertSectionColors = false + [params.footer] + # Show contact icons for email/phone (if specified) in the footer of the page + showContactIcons = false + [params.meta] keywords = "some, keywords, for, seo, you, know, google, duckduckgo, and, such" + + [params.contact] + email = "mail@janedoe.com" + phone = "+49 1111 555555" diff --git a/exampleSite/content/homepage/contact.md b/exampleSite/content/homepage/contact.md index e344a31..6615de8 100644 --- a/exampleSite/content/homepage/contact.md +++ b/exampleSite/content/homepage/contact.md @@ -4,8 +4,8 @@ weight: 4 header_menu: true --- -{{}} [mail@janedoe.com](mailto:your-email@your-domain.com) +{{}} [{{}}](mailto:{{}}) -{{}} [+49 1111 555555](tel:+491111555555) +{{}} [{{}}](tel:{{}}) Let us get in touch! diff --git a/i18n/de.toml b/i18n/de.toml new file mode 100644 index 0000000..7563e59 --- /dev/null +++ b/i18n/de.toml @@ -0,0 +1,5 @@ +[email] +other = "Email" + +[phone] +other = "Telefon" diff --git a/i18n/en.toml b/i18n/en.toml new file mode 100644 index 0000000..87afd30 --- /dev/null +++ b/i18n/en.toml @@ -0,0 +1,5 @@ +[email] +other = "Email" + +[phone] +other = "Phone" diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index a19e393..1a5098c 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -1,5 +1,16 @@