From 4498b93680ca61ce4f7df4a31368c67e78052cc4 Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Sat, 5 Feb 2022 15:40:38 +0100 Subject: change theme and minor edits --- config.toml | 164 +++++++++++++++--------------------------------------------- 1 file changed, 41 insertions(+), 123 deletions(-) (limited to 'config.toml') diff --git a/config.toml b/config.toml index 3326d20..4c8540f 100644 --- a/config.toml +++ b/config.toml @@ -1,130 +1,48 @@ -baseurl = "https://www.rgdd.se" -title = "rgdd" -languageCode = "en-us" -paginate = "10" # Number of posts per page -#------------------------------------------------------------------------------- -# DEFAULT SETTINGS -#------------------------------------------------------------------------------- - -# Default Theme -theme= "gruvhugo" - -# Default Post Extension -defaultExtension= "html" - -# Default metadata format for newly created frontmatter using -# hugo new command. "toml", "yaml", or "json" -metaDataFormat= "toml" - -[taxonomies] - tag = "tags" - category = "categories" - series = "series" - -[params.main] - enabled = true - enableKatex = true - metaKeywords = "Rasmus Dahlberg, rgdd" - headerTitle = "rgdd" - copyright = "© 2021 Rasmus Dahlberg. Some rights reserved." - name = "Rasmus Dahlberg" - img = "img/author.jpg" - img_title = "Rasmus Dahlberg and his cat Cece in a forest." - quote = "Long-term sustainability requires a sound work-life balance" - description= "PhD student at Karlstad University, Sweden. Software engineer at Mullvad VPN. I am passionate about transparency logs, anonymity networks, and Linux. Off-work I cook, walk, socialize, lift weights, and spoil my cat." - licenseUrl = "" - - # Social icons - [[params.social]] - name = "instagram" +title = "rgdd.se" +baseURL = "https://www.rgdd.se" +theme = "researcher" +disableKinds = ["taxonomy", "term"] +enableEmoji = true + +[params] + author = "Rasmus Dahlberg" + description = "A simple monospaced resume theme for Hugo." + favicon = "" # path to a .ico to use as favicon + logo = "" # url or path to a logo to put in the header + [params.footer] + text = "" + url = "o" + [params.style] # appearance options (can be omitted) + fontFamily = "Luxi Mono" + pageWidth = "750px" + avatarSize = "90px" + colorBlack = "#696969" # dark gray instead + colorRed = "#006400" # dark green instead + [[params.socialIcons]] + icon = "fab fa-instagram" + title = "Instagram" url = "https://www.instagram.com/__rgdd" - - [[params.social]] - name = "twitter" - url = "https://twitter.com/__rgdd" - - [[params.social]] - name = "github" + [[params.socialIcons]] + icon = "fab fa-twitter" + title = "Twitter" + url = "https://twitter.com/__rgdd" + [[params.socialIcons]] + icon = "fab fa-github" + title = "GitHub" url = "https://github.com/rgdd" + [[params.socialIcons]] + icon = "fas fa-envelope" + title = "E-mail" + url = "mailto:rasmus@mullvad.net" - [[params.social]] - name = "email" - url = "mailto:rasmus@mullvad.net" - -[params.style] - # add path to custom CSS files here - custom_css = [] - # add path to custom SCSS files here - custom_scss = [] +[permalinks] + "/" = "/:filename" [menu] [[menu.main]] - identifier = "about" - name = "About" - url = "about" - - [[menu.main]] - identifier = "post" - name = "Blog" - url = "post/" + name = "Blog" + url = "/post" + weight = 1 -[markup] - defaultMarkdownHandler = "goldmark" - [markup.asciidocExt] - backend = "html5" - docType = "article" - extensions = [] - failureLevel = "fatal" - noHeaderOrFooter = true - safeMode = "unsafe" - sectionNumbers = false - trace = false - verbose = true - workingFolderCurrent = false - [markup.asciidocExt.attributes] - [markup.blackFriday] - angledQuotes = false - footnoteAnchorPrefix = "" - footnoteReturnLinkContents = "" - fractions = true - hrefTargetBlank = false - latexDashes = true - nofollowLinks = false - noreferrerLinks = false - plainIDAnchors = true - skipHTML = false - smartDashes = true - smartypants = true - smartypantsQuotesNBSP = false - taskLists = true - [markup.goldmark] - [markup.goldmark.extensions] - definitionList = true - footnote = true - linkify = true - strikethrough = true - table = true - taskList = true - typographer = true - [markup.goldmark.parser] - attribute = true - autoHeadingID = true - autoHeadingIDType = "github" - [markup.goldmark.renderer] - hardWraps = false - unsafe = false - xhtml = false - [markup.highlight] - codeFences = true - guessSyntax = false - hl_Lines = "" - lineNoStart = 1 - lineNos = false - lineNumbersInTable = true - noClasses = true - style = "monokai" - tabWidth = 4 - [markup.tableOfContents] - endLevel = 3 - ordered = false - startLevel = 2 +[markup.goldmark.renderer] + unsafe = true # allow raw HTML in markdown files -- cgit v1.2.3