switched out poison to papermod.
didnt like how that sidebar took up so much space.
This commit is contained in:
parent
5bfdffb4b9
commit
debe81f89e
9 changed files with 217 additions and 45 deletions
139
hugo.toml
139
hugo.toml
|
@ -1,50 +1,117 @@
|
|||
baseURL = 'https://gabevenberg.com/'
|
||||
languageCode = 'en-us'
|
||||
title = 'Gabe Venberg'
|
||||
theme = 'poison'
|
||||
theme = 'PaperMod'
|
||||
enableRobotsTXT = true
|
||||
|
||||
[params]
|
||||
brand = "Gabe Venberg" # name of your site - appears in the sidebar
|
||||
# brand_image = "/images/test.jpg" # path to the image shown in the sidebar
|
||||
description = "Technical projects I've been working on" # Used as default meta description if not specified in front matter
|
||||
dark_mode = true # optional - defaults to false
|
||||
# favicon = "favicon.png" # path to favicon (defaults to favicon.png)
|
||||
env = 'production'
|
||||
title = 'ExampleSite'
|
||||
description = "ExampleSite description"
|
||||
author = 'Me'
|
||||
DateFormat = "2006-1-2"
|
||||
defaultTheme = 'dark'
|
||||
disableThemeToggle = false
|
||||
ShowReadingTime = false
|
||||
ShowShareButtons = false
|
||||
ShowPostNavLinks = true
|
||||
ShowBreadCrumbs = true
|
||||
ShowCodeCopyButtons = true
|
||||
ShowWordCount = false
|
||||
ShowRssButtonInSectionTermList = true
|
||||
UseHugoToc = true
|
||||
disableSpecial1stPost = false
|
||||
disableScrollToTop = false
|
||||
comments = false
|
||||
hidemeta = false
|
||||
hideFooter = true
|
||||
hideSummary = false
|
||||
showtoc = true
|
||||
tocopen = true
|
||||
mainSections = ['posts', 'docs']
|
||||
|
||||
# MENU PLACEHOLDER
|
||||
# Menu dict keys:
|
||||
# Name: The name to display on the menu.
|
||||
# URL: The directory relative to the content directory.
|
||||
# HasChildren: If the directory's files should be listed. Default is true.
|
||||
# Limit: If the files should be listed, how many should be shown.
|
||||
menu = [
|
||||
{Name = "About", URL = "/about/", HasChildren = false},
|
||||
{Name = "Posts", URL = "/posts/", Pre = "Recent", HasChildren = true, Limit = 3},
|
||||
]
|
||||
github_url = "https://github.com/gabevenberg"
|
||||
[params.assets]
|
||||
disableHLJS = true
|
||||
|
||||
# NOTE: If you don't want to use RSS, comment or delete the following lines
|
||||
# Adds an RSS icon to the end of the socials which links to {{ .Site.BaseURL }}/index.xml
|
||||
rss_icon = true
|
||||
# Which section the RSS icon links to, defaults to all content. See https://gohugo.io/templates/rss/#section-rss
|
||||
rss_section = "posts"
|
||||
[params.homeInfoParams]
|
||||
Title = "Gabe Venberg"
|
||||
Content = """
|
||||
Mildly interesting things Ive done.
|
||||
"""
|
||||
|
||||
[[params.socialIcons]]
|
||||
name = "github"
|
||||
url = "https://github.com/gabevenberg"
|
||||
|
||||
[[params.socialIcons]]
|
||||
name = "gitea"
|
||||
url = "https://git.venberg.xyz/Gabe"
|
||||
|
||||
[[params.socialIcons]]
|
||||
name = "Rss"
|
||||
url = "index.xml"
|
||||
|
||||
[[menu.main]]
|
||||
name = "About"
|
||||
url = "about"
|
||||
weight = 1
|
||||
|
||||
[[menu.main]]
|
||||
name = "Resume"
|
||||
url = "resume"
|
||||
weight = 1
|
||||
|
||||
[[menu.main]]
|
||||
name = "Archive"
|
||||
url = "archives"
|
||||
weight = 2
|
||||
|
||||
[[menu.main]]
|
||||
name = "Search"
|
||||
url = "search"
|
||||
weight = 3
|
||||
|
||||
[params.profileMode]
|
||||
enabled = true
|
||||
title = "Gabe Venberg"
|
||||
imageUrl = "#"
|
||||
imageTitle = "Gabe Venberg"
|
||||
|
||||
[[params.profileMode.buttons]]
|
||||
name = "About"
|
||||
url = "about"
|
||||
|
||||
[[params.profileMode.buttons]]
|
||||
name = "Resume"
|
||||
url = "resume"
|
||||
|
||||
[[params.profileMode.buttons]]
|
||||
name = "Posts"
|
||||
url = "posts"
|
||||
|
||||
[outputs]
|
||||
home = [ "HTML", "RSS", "JSON" ]
|
||||
|
||||
[markup]
|
||||
[markup.highlight]
|
||||
anchorLineNos = false
|
||||
codeFences = true
|
||||
guessSyntax = false
|
||||
hl_Lines = ''
|
||||
hl_inline = false
|
||||
lineAnchors = ''
|
||||
lineNoStart = 1
|
||||
lineNos = true
|
||||
lineNumbersInTable = true
|
||||
noClasses = true
|
||||
noHl = false
|
||||
style = 'monokai'
|
||||
tabWidth = 4
|
||||
[markup.highlight]
|
||||
anchorLineNos = false
|
||||
codeFences = true
|
||||
guessSyntax = false
|
||||
hl_Lines = ''
|
||||
hl_inline = false
|
||||
lineAnchors = ''
|
||||
lineNoStart = 1
|
||||
lineNos = true
|
||||
lineNumbersInTable = true
|
||||
noClasses = true
|
||||
noHl = false
|
||||
style = 'monokai'
|
||||
tabWidth = 4
|
||||
|
||||
[markup.tableOfContents]
|
||||
endLevel = 5
|
||||
ordered = false
|
||||
startLevel = 3
|
||||
|
||||
|
||||
[security]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue