123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- baseURL = "https://schnouki.net/"
- title = "/dev/schnouki"
- # for smart copyright line, leave this blank and check [params.copyright]
- copyright = ""
- theme = [
- "baguettebox",
- "minimo"
- ]
- disqusShortname = ""
- googleAnalytics = ""
- paginate = 10
- preserveTaxonomyNames = true
- enableRobotsTXT = true # generate robots.txt
- # Syntax Highlighting ( https://gohugo.io/content-management/syntax-highlighting/ )
- pygmentsCodefences = true
- enableEmoji = true
- # Missing translations will default to this content language
- defaultContentLanguage = "en"
- ignoreFiles = ["/\\.#.+", "~$"]
- [languages]
- # edit this block for your own language
- [languages.en]
- lang = "en"
- languageName = "English"
- weight = 1
- # [languages.fr]
- # lang = "fr"
- # languageName = "Français"
- # weight = 2
- [params.info]
- description = "Software engineer, full-stack developer. Addicted to Python, Go, Emacs and Linux. I love sci-fi and want Firefly to be real."
- title404 = "There's nothing here!"
- # [languages.fr.params.info]
- # description = "Ingénieur logiciel, développeur full-stack. Passionné de Python, Go, Emacs et Linux. Fan de science-fiction, rêve que Firefly soit réel."
- # title404 = "Il n'y a rien à voir ici !"
- [params.assets]
- favicon = "favicon.ico"
- customCSS = ["css/schnouki.css"]
- customJS = [] # "js/schnouki.js"]
- gopher = "/img/gopher.png" # used in 404 template ( Generator: https://gopherize.me )
- [params.copyright]
- prefix = ""
- holder = "Thomas Jost"
- startYear = "2009"
- suffix = """— licensed under a <a rel="license" href="//creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>."""
- logo = "/android-chrome-512x512.png"
- # [languages.fr.params.copyright]
- # suffix = """— mis à disposition selon les termes de la <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Licence Creative Commons Attribution - Partage dans les Mêmes Conditions 4.0 International</a>."""
- [params.settings]
- # date & time format: https://golang.org/pkg/time/
- dateFormat = "02 Jan 2006"
- listDateFormat = "02 Jan 2006"
- archiveDateFormat = "02 Jan"
- hideEntryNavigation = ["page"] # boolean / array of sections
- hideEntryMeta = ["page", "portfolio"] # boolean / array of sections
- showReadingTime = true
- showLastMod = true
- taxonomyCloudShuffle = false
- accentColor = "#7b7bde"
- hideMainMenu = true
- [params.sidebar]
- enable = true
- [params.widgets]
- homepage = ["home_intro", "recent_posts"]
- sidebar = ["about", "sidebar_menu", "taxonomy_cloud"] # "search"
- footer = ["social_menu"]
- [params.opengraph.facebook]
- admins = [] # array of Facebook IDs
- appID = ""
- pageID = ""
- [params.opengraph.twitter]
- page = "Schnouki" # Twitter page username
- [params.seo]
- # Title Separator: - – — · • * ⋆ | ~ « » < >
- titleSeparator = "•"
- [params.social]
- codepen = ""
- email = "schnouki+blog@schnouki.net"
- facebook = ""
- github = "Schnouki"
- gitlab = "Schnouki"
- instagram = ""
- linkedin = ""
- twitter = "Schnouki"
- telegram = ""
- google_scholar = ""
- youtube = ""
- [params.comments]
- enable = true
- [params.comments.isso]
- enable = true
- scriptSrc = "/isso/js/embed.min.js"
- dataAttrs = 'data-isso="/isso/" data-isso-require-author="true" data-isso-require-email="true" data-isso-gravatar="true" data-isso-avatar="false" data-isso-feed="true" data-isso-reply-notifications="true"'
- [params.search]
- client = "fuse" # algolia / fuse / lunr
- [taxonomies]
- #author = "authors"
- category = "categories"
- #series = "series"
- tag = "tags"
- [permalinks]
- post = "/post/:year/:slug/"
- page = "/:slug/"
- [[menu.main]]
- name = "Categories"
- weight = 100
- identifier = "categories"
- url = "/categories/"
- # [[languages.fr.menu.main]]
- # name = "Catégories"
- # weight = 100
- # identifier = "categories"
- # url = "/fr/categories/"
- [[menu.main]]
- name = "Tags"
- weight = 110
- identifier = "tags"
- url = "/tags/"
- # [[languages.fr.menu.main]]
- # name = "Tags"
- # weight = 110
- # identifier = "tags"
- # url = "/fr/tags/"
- [[menu.main]]
- name = "Archives"
- weight = 120
- identifier = "archives"
- url = "/post/"
- # [[languages.fr.menu.main]]
- # name = "Archives"
- # weight = 120
- # identifier = "archives"
- # url = "/fr/post/"
- [[menu.home_intro]]
- identifier = "spop"
- name = "spop"
- title = "A Spotify client running as a daemon, similar to mpd."
- url = "https://github.com/Schnouki/spop"
- weight = 10
- [[menu.home_intro]]
- identifier = "dotfiles"
- name = "dotfiles"
- title = "Many of my configuration files."
- url = "https://github.com/Schnouki/dotfiles"
- weight = 20
- [[menu.home_intro]]
- identifier = "git-annex-remote-hubic"
- name = "git-annex-remote-hubic"
- title = "A git-annex special remote for hubiC"
- url = "https://github.com/Schnouki/git-annex-remote-hubic"
- weight = 30
- [[menu.home_intro]]
- identifier = "stibidik"
- name = "STIBIDIK"
- title = "My company 😉"
- url = "https://www.stibidik.fr/"
- weight = 40
- [blackfriday]
- hrefTargetBlank = false
- # [languages.fr.blackfriday]
- # angledQuotes = true
|