Initial commit
This commit is contained in:
54
hugo.toml
Normal file
54
hugo.toml
Normal file
@@ -0,0 +1,54 @@
|
||||
baseURL = 'https://sebastians.dev/'
|
||||
title = 'sebastians'
|
||||
theme = 'gokarna'
|
||||
languageCode = 'en'
|
||||
defaultContentLanguage = 'en'
|
||||
enableEmoji = true
|
||||
|
||||
pygmentsStyle = 'monokai'
|
||||
|
||||
[params]
|
||||
footer = "sebastians"
|
||||
description = ""
|
||||
avatarURL = "https://assets.chaos.social/accounts/avatars/110/484/932/971/821/025/original/bf3eb8e5045fd396.png"
|
||||
AvatarAltText = "cartoon image of me"
|
||||
avatarSize = "size-m"
|
||||
ShowBackToTopButton = false# true or false for "back to top" button on posts
|
||||
customHeadHTML = """
|
||||
<!-- KaTeX -->
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/katex.min.css" integrity="sha384-Xi8rHCmBmhbuyyhbI88391ZKP2dmfnOl4rT9ZfRI7mLTdk1wblIUnrIq35nqwEvC" crossorigin="anonymous">
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/katex.min.js" integrity="sha384-X/XCfMm41VSsqRNQgDerQczD69XqmjOOOwYQvr/uuC+j4OPoNhVgjdGFwhvN02Ja" crossorigin="anonymous"></script>
|
||||
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/contrib/auto-render.min.js" integrity="sha384-+XBljXPPiv+OzfbB3cVmLHf4hdUFHlWNZN5spNQ7rmHTXpd7WvJum6fIACpNNfIR" crossorigin="anonymous"></script>
|
||||
<script>
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
renderMathInElement(document.body, {
|
||||
// customised options
|
||||
// • auto-render specific keys, e.g.:
|
||||
delimiters: [
|
||||
{left: '$$', right: '$$', display: true},
|
||||
{left: '$', right: '$', display: false},
|
||||
],
|
||||
// • rendering keys, e.g.:
|
||||
throwOnError : false
|
||||
});
|
||||
});
|
||||
</script>
|
||||
"""
|
||||
socialIcons = [
|
||||
{name = "github", url = "https://github.com/sebinbash"},
|
||||
{name = "mastodon", url = "https://chaos.social/@sebastians"},
|
||||
{name = "spotify", url = "https://spotify.com/"},
|
||||
{name = "element", url = "https://matrix.to/#/@sebastians:selfnet.de"},
|
||||
{name = "email", url = "mailto:mail@sebastians.dev"},
|
||||
{name = "rss", url = "/index.xml"}
|
||||
]
|
||||
|
||||
[menu]
|
||||
[[menu.main]]
|
||||
identifier = "home"
|
||||
url = "/"
|
||||
pre = ""
|
||||
post = ""
|
||||
name = "Home"
|
||||
weight = 1
|
||||
|
||||
Reference in New Issue
Block a user