diff options
author | Dimitri Staessens <[email protected]> | 2019-03-16 17:43:05 +0100 |
---|---|---|
committer | Dimitri Staessens <[email protected]> | 2019-03-16 17:43:05 +0100 |
commit | 79acfcf1599496e67b20c39c00a100b07c383ab1 (patch) | |
tree | 0651646a631545b2ff56074f4c8f492d69dbb170 /themes/terrassa/exampleSite/config.toml | |
parent | 4b98568dbdc0dddf8255abbbb08565821b79f839 (diff) | |
download | website-79acfcf1599496e67b20c39c00a100b07c383ab1.tar.gz website-79acfcf1599496e67b20c39c00a100b07c383ab1.zip |
theme: Add terrassa theme
Diffstat (limited to 'themes/terrassa/exampleSite/config.toml')
-rw-r--r-- | themes/terrassa/exampleSite/config.toml | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/themes/terrassa/exampleSite/config.toml b/themes/terrassa/exampleSite/config.toml new file mode 100644 index 0000000..d40ac0d --- /dev/null +++ b/themes/terrassa/exampleSite/config.toml @@ -0,0 +1,93 @@ +baseurl = "/" +title = "Terrassa" +author = "Daniel Zaragoza (Danielkvist)" +googleAnalytics = "" +defaultContentLanguage = "en" +language = "en-US" +paginate = 3 # Number of posts per page + +theme = "hugo-terrassa-theme" +themesDir = "../.." # Not necessary on production sites + +[outputs] + home = ["HTML", "RSS"] + page = ["HTML", "RSS"] + +[params] + description = "Terrassa is a simple, fast and responsive theme for Hugo with a strong focus on accessibility made from scratch." + favicon = "favicon.ico" # Relative URL + logo = "" # Absolute URL + +[params.hero] + textColor = "" # Empty for default color + +[params.cta] # Call To Action + show = true + cta = "Contact" + link = "contact" # Relative URL + +[params.form] # Contact form + netlify = true # Use only if you are using Netlify + action = "https://formspree.io/[email protected]" + method = "POST" + inputNameName = "name" + inputNameLabel = "Name" + inputNamePlaceholder = "Your name" + inputEmailName = "email" + inputEmailLabel = "Email" + inputEmailPlaceholder = "Your email" + inputMsgName = "message" + inputMsgLabel = "Write something" + inputMsgLength = 750 + inputSubmitValue = "Send" + +[params.posts] + showAuthor = true + showDate = true + showTags = true + dateFormat = "Monday, Jan, 2006" + +[params.contact] # Contact info + email = "[email protected]" + phone = "xxx xxx xxx" + skype = "" + address = "419 Creek St. Revere, MA 02151" + +[params.social] # Social networks + twitter = "https://twitter.com/john" + facebook = "https://facebook.com/john" + github = "https://github.com/john" + gitlab = "" + codepen = "https://codepen.io/john" + instagram = "https://instagram.com/john" + pinterest = "" + youtube = "" + linkedin = "" + weibo = "" + mastodon = "" + tumblr = "" + flickr = "" + "500px" = "" + +[params.copy] # Copyright + copy = "" # Empty for default content + +[privacy] + [privacy.googleAnalytics] + anonymizeIP = true + disable = false + respectDoNotTrack = true + useSessionStorage = false + [privacy.instagram] + disable = false + simple = false + [privacy.twitter] + disable = false + enableDNT = true + simple = false + [privacy.vimeo] + disable = false + simple = false + [privacy.youtube] + disable = false + privacyEnhanced = true
\ No newline at end of file |