Skip to content

Instantly share code, notes, and snippets.

@Eclectikus
Created November 13, 2020 13:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Eclectikus/7f8c24f4576c44f2e0083f6ccdd0cb16 to your computer and use it in GitHub Desktop.
Save Eclectikus/7f8c24f4576c44f2e0083f6ccdd0cb16 to your computer and use it in GitHub Desktop.
TOML config for https://nosolodatos.netlify.app/ (Theme Introduction)
baseURL = "https://nosolodatos.netlify.com/" # Your domain name. Must end with "/"
theme = "hugo-theme-introduction"
DefaultContentLanguage = "es" # Default language for multilingual sites
disqusshortname = "Eclectikus" # https://gohugo.io/content-management/comments
googleAnalytics = "UA-xxxxxxxx-xx" # https://gohugo.io/templates/internal/#google-analytics
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
[params]
themeStyle = "light" # Choose "light" or "dark"
favicon = "/img/favicon.ico" # Path to favicon file
showRSSButton = false # Show rss button in navigation
fadeIn = true # Turn on/off the fade-in effect
fadeInIndex = true # Turn on/off the fade-in effect on the index page even if fade-in was otherwise turned off
dateFormat = "Jan 2, 2006"
email = "eclectikus@pm.me" # E-mail address for contact section
customCSS = ["mystyle.css"] # Include custom css files placed under assets/
enableRobotsTXT = true # I think this does not work -Ec
# Configure the home page
[params.home]
introHeight = "medium" # Input either "medium" or "large" or "fullheight"
showLatest = true # Show latest blog post summary
showAllPosts = false # Set true to list all posts on home page, or set false to link to separate blog list page
numberOfProjectsToShow = 3 # Maximum number of projects to show on home page. Unset or comment out to show all projects
localTime = true # Show your current local time in contact section
timeZone = "Europe/Madrid" # Your timezone as in the TZ* column of this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
timeFormat = "h:mm A" # https://momentjs.com/docs/#/displaying/format/
[params.projects]
useTwoColumns = true # Use a layout with two columns instead of three
# Share buttons on blog post pages
[params.share]
twitter = true
facebook = true
# googlePlus = true
# pinterest = true
# Social icons appear in introduction and contact section. Add as many more as you like.
# Icon pack "fab" includes social network icons, see: https://fontawesome.com/icons?d=gallery&s=brands&m=free
# Icon pack "fas" includes solid style icons, see: https://fontawesome.com/icons?d=gallery&s=solid&m=free
[[params.social]]
url = "https://twitter.com/scienceisbeauty"
icon = "twitter" # icon name without the 'fa-'
icon_pack = "fab"
[[params.social]]
url = "https://scienceisbeauty.tumblr.com/"
icon = "tumblr"
icon_pack = "fab"
[[params.social]]
url = "https://github.com/Eclectikus/"
icon = "github"
icon_pack = "fab"
# [[params.social]]
# url = "https://linkedin.com/"
# icon = "linkedin-in" # icon name without the 'fa-'
# icon_pack = "fab"
# [[params.social]]
# url = "mailto:youremail@email.com" # For a direct email link, use "mailto:test@example.org".
# icon = "paper-plane" # icon name without the 'fa-'
# icon_pack = "fas"
# [[params.social]]
# url = "https://scienceisbeauty.tumblr.com/"
# icon = "tumblr-square" # icon name without the 'fa-'
# icon_pack = "fab"
# html_attributes = "rel=\"me\"" # Add rel attribute for Mastodon profile link verification
# If you don't want to use the default menu, you can define one by yourself
[[menu.main]]
name = "Inicio"
url = "/"
weight = 10
[[menu.main]]
name = "WIPs"
url = "/#wip"
weight = 20
[[menu.main]]
name = "Info"
url = "/#about"
weight = 30
[[menu.main]]
name = "Blog"
url = "/blog"
weight = 40
[[menu.main]]
name = "tags"
url = "/tags"
weight = 50
[[menu.main]]
name = "Privacidad etc"
url = "/#teclegal"
weight = 60
[[menu.main]]
name = "Contacto"
url = "/#contact"
weight = 70
# We only use tag as a taxonomies
# You can add more by yourself
[taxonomies]
tag = "tags"
[languages]
[languages.es]
languageName = "Español"
languageCode = "es"
contentDir = "content/es"
weight = 0
title = "noSoloDatos"
[languages.es.params]
description = "Comentarios y opiniones sobre ciencia, tecnología y sociedad. Adquisición, tratamiento y análisis de datos, OSINT..."
footerText = "" # Text to override default footer text (markdown allowed)
[languages.en]
languageName = "English"
languageCode = "en-us"
contentDir = "content/en"
weight = 1
title = "´noSoloDatos"
[languages.en.params]
description = "If we have data, let’s look at data. If all we have are opinions, let’s go with mine." # Max 160 characters show in search results
footerText = "" # Text to override default footer text (markdown allowed)
# [languages.de]
# languageName = "Deutsch"
# languageCode = "de"
# contentDir = "content/de"
# weight = 2
# title = "Vorstellung"
# [languages.de.params]
# dateFormat = "2. January 2006"
# description = "Beschreibung der Webseite"
# # footerText = ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment