devroom.io/config.toml

108 lines
3.2 KiB
TOML
Raw Normal View History

2019-06-05 12:32:16 +00:00
baseurl = "https://www.devroom.io"
2020-03-09 10:40:44 +00:00
title = "devroom.io"
theme = "devroom-2020"
2019-06-05 12:32:16 +00:00
languagecode = "en"
defaultcontentlanguage = "en"
2019-01-13 14:57:47 +00:00
2022-01-14 12:27:13 +00:00
copyright = "Copyright © 1999-2022 Ariejan de Vroom &lt;<a href='/contact/'>ariejan@devroom.io</a>&gt;"
2019-01-13 14:57:47 +00:00
2020-03-09 10:40:44 +00:00
paginate = 9999
2019-01-13 14:57:47 +00:00
canonifyurls = true
2020-03-09 10:40:44 +00:00
# pygmentsstyle = "solarized-dark256"
pygmentsstyle = "monokai"
2019-06-05 12:32:16 +00:00
pygmentscodefences = true
pygmentscodefencesguesssyntax = true
2019-01-13 14:57:47 +00:00
googleAnalytics = "UA-60089-16"
2019-06-05 12:32:16 +00:00
disqusShortname = ""
2017-03-20 13:32:18 +00:00
2020-03-11 09:18:52 +00:00
enableGitInfo = true
2019-06-05 12:32:16 +00:00
[permalinks]
posts = "/:year/:month/:day/:slug"
2019-01-13 14:57:47 +00:00
2020-02-27 14:03:04 +00:00
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
2019-01-13 14:57:47 +00:00
[params]
2019-06-05 12:32:16 +00:00
author = "Ariejan de Vroom"
2022-07-27 12:07:41 +00:00
info = "Family man, software engineer and many other things"
2020-02-27 13:01:10 +00:00
description = "Ariejan de Vroom's personal website on software engineering and electronics tinkering"
2019-06-05 12:32:16 +00:00
keywords = "blog,developer,personal,electronics"
2020-03-09 10:40:44 +00:00
footerquote = "Live now; make <em>now</em> always the most precious time. <em>Now</em> will never come again.<br>&nbsp;&nbsp;&nbsp;&nbsp; Jean-Luc Picard"
2019-06-05 12:32:16 +00:00
2020-03-09 10:40:44 +00:00
mainSections = ["posts", "projects"]
2019-06-05 12:32:16 +00:00
2020-03-09 10:40:44 +00:00
[[params.skill]]
2022-01-14 12:27:13 +00:00
content = "Software Engineer, consultant and architect at <a href='https://www.kabisa.nl'>Kabisa</a>"
2019-06-05 12:32:16 +00:00
weight = 10
2020-03-09 10:40:44 +00:00
[[params.skill]]
2022-01-14 12:27:13 +00:00
content = "Fanatical homelab admin (<a href='/2020/02/28/building-a-diy-home-server-with-freenas/'>read more</a>)"
2019-06-05 12:32:16 +00:00
weight = 20
2020-03-09 10:40:44 +00:00
[[params.skill]]
2022-01-14 12:27:13 +00:00
content = "Bass guitar player, piano player, and music producer"
2019-06-05 12:32:16 +00:00
weight = 30
2022-07-27 12:07:41 +00:00
[[params.skill]]
content = "Drive-way home-wrencher (not a car mechanic); current project: <a href=/projects/volkswagen-golf-iii-cabrio-1994/'>Volkswagen Golf 3 Cabrio</a>"
weight = 40
2020-03-09 10:40:44 +00:00
[[params.popular]]
2020-10-03 13:38:34 +00:00
name = "Cherry-Picking specific commits from another branch"
url = "/2010/06/10/cherry-picking-specific-commits-from-another-branch/"
weight = 100
[[params.popular]]
name = "Installing Node.js and NPM on Ubuntu/Debian"
url = "/2011/10/24/installing-node-js-and-npm-on-ubuntu-debian/"
weight = 100
[[params.popular]]
name = "How to create and apply a patch with Git"
url = "/2009/10/26/how-to-create-and-apply-a-patch-with-git/"
weight = 100
2020-03-09 10:40:44 +00:00
[[params.popular]]
2020-10-03 13:38:34 +00:00
name = "Git: Squash your latests commits into one"
url = "/2011/07/05/git-squash-your-latests-commits-into-one/"
weight = 50
[[params.popular]]
name = "Building a DIY Home Server with FreeNAS"
url = "/2020/02/28/building-a-diy-home-server-with-freenas/"
weight = 50
[[params.popular]]
name = "How to create and apply a patch with Subversion"
url = "/2007/07/03/how-to-create-and-apply-a-patch-with-subversion/"
weight = 50
[[params.popular]]
name = "Repair: Philips 42\" 3D LED TV with Ambilight"
url = "/projects/repair-philips-42pfl6057h-12/"
weight = 50
2019-06-05 12:32:16 +00:00
# Menu links
2019-06-05 12:35:41 +00:00
[[menu.main]]
2020-03-09 10:40:44 +00:00
name = "devroom.io"
2019-06-05 12:35:41 +00:00
weight = 1
url = "/"
2019-01-13 14:57:47 +00:00
[[menu.main]]
2020-03-09 10:40:44 +00:00
name = "blog"
2019-06-05 12:32:16 +00:00
weight = 10
url = "/posts/"
2019-01-13 14:57:47 +00:00
[[menu.main]]
2020-03-09 10:40:44 +00:00
name = "projects"
2019-06-05 12:32:16 +00:00
weight = 20
url = "/projects/"
2019-01-13 14:57:47 +00:00
[[menu.main]]
2020-03-09 10:40:44 +00:00
name = "about"
2019-06-05 12:32:16 +00:00
weight = 40
url = "/about/"
2020-02-27 14:03:04 +00:00
[[menu.main]]
2020-03-09 10:40:44 +00:00
name = "gpg"
2020-02-27 14:03:04 +00:00
weight = 90
url = "/gpg/"
2019-01-13 14:57:47 +00:00
[[menu.main]]
2020-03-09 10:40:44 +00:00
name = "contact"
2020-02-27 14:03:04 +00:00
weight = 100
2019-06-05 12:32:16 +00:00
url = "/contact/"