Initial commit.
This commit is contained in:
commit
3c96faeefc
4
.gitmodules
vendored
Normal file
4
.gitmodules
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
[submodule "themes/hermit-v2"]
|
||||||
|
path = themes/hermit-v2
|
||||||
|
url = https://github.com/1bl4z3r/hermit-V2
|
||||||
|
branch = main
|
0
.hugo_build.lock
Normal file
0
.hugo_build.lock
Normal file
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
121
config.toml
Normal file
121
config.toml
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
baseURL = 'https://bovender.de/'
|
||||||
|
languageCode = 'en-us'
|
||||||
|
title = 'bovender'
|
||||||
|
theme = "hermit-v2"
|
||||||
|
|
||||||
|
enableGitInfo = true
|
||||||
|
|
||||||
|
pygmentsCodefences = true
|
||||||
|
pygmentsUseClasses = true
|
||||||
|
#hasCJKLanguage = true
|
||||||
|
|
||||||
|
rssLimit = 10
|
||||||
|
|
||||||
|
copyright = "2024 Daniel Kraus"
|
||||||
|
enableEmoji = true
|
||||||
|
|
||||||
|
#[services]
|
||||||
|
# [services.disqus]
|
||||||
|
# shortname = ''
|
||||||
|
# [services.googleAnalytics]
|
||||||
|
# id = ''
|
||||||
|
|
||||||
|
[frontmatter]
|
||||||
|
date = ["date", "publishDate", "lastmod"]
|
||||||
|
lastmod = ["lastmod", ":git", "date", "publishDate"]
|
||||||
|
publishDate = ["publishDate", "date"]
|
||||||
|
expiryDate = ["expiryDate"]
|
||||||
|
|
||||||
|
|
||||||
|
[params.author]
|
||||||
|
name = "Daniel Kraus"
|
||||||
|
about = "CHANGE SITE AUTHOR ABOUT"
|
||||||
|
|
||||||
|
[blackfriday]
|
||||||
|
# hrefTargetBlank = true
|
||||||
|
# noreferrerLinks = true
|
||||||
|
# nofollowLinks = true
|
||||||
|
|
||||||
|
[taxonomies]
|
||||||
|
tag = "tags"
|
||||||
|
# Categories are disabled by default.
|
||||||
|
# category = "categories"
|
||||||
|
|
||||||
|
# Enable to get proper Mathjax support
|
||||||
|
#[markup]
|
||||||
|
# [markup.goldmark]
|
||||||
|
# [markup.goldmark.extensions]
|
||||||
|
# [markup.goldmark.extensions.passthrough]
|
||||||
|
# enable = true
|
||||||
|
# [markup.goldmark.extensions.passthrough.delimiters]
|
||||||
|
# block = [['\[', '\]'], ['$$', '$$']]
|
||||||
|
# inline = [['\(', '\)']]
|
||||||
|
|
||||||
|
|
||||||
|
[params]
|
||||||
|
dateform = "2 Jan 2006"
|
||||||
|
dateformShort = "2 Jan"
|
||||||
|
dateformNum = "2006-01-02"
|
||||||
|
dateformNumTime = "2006-01-02 15:04 -0700"
|
||||||
|
|
||||||
|
# description = "CHANGE ME SITE DESC RIPTION"
|
||||||
|
# images = [""]
|
||||||
|
themeColor = "#494f5c"
|
||||||
|
|
||||||
|
homeSubtitle = "Daniel Kraus"
|
||||||
|
footerCopyright = "all rights reserved"
|
||||||
|
# bgImg = ""
|
||||||
|
gitUrl = "https://github.com/1bl4z3r/hermit-V2/tree/staging"
|
||||||
|
|
||||||
|
justifyContent = true
|
||||||
|
|
||||||
|
relatedPosts = true
|
||||||
|
code_copy_button = true
|
||||||
|
|
||||||
|
homeSubtitlePrinter = true
|
||||||
|
scrollToTop = true
|
||||||
|
global_mathjax = false
|
||||||
|
# readTime = true
|
||||||
|
# readTimeSeparator = "CHANGE ME READ TIME"
|
||||||
|
# legacyLayout = false
|
||||||
|
shareSocial = true
|
||||||
|
# googleTagManager = "GTM-XXXXXXXX"
|
||||||
|
# tagSymbol = "#"
|
||||||
|
# categorySymbol = "⊲"
|
||||||
|
# pinned = "Pinned Posts"
|
||||||
|
# pinnedSVGname = "pin"
|
||||||
|
# descriptionInPosts= true
|
||||||
|
# initialPublish = "Initally Posted on: "
|
||||||
|
# human = ["single","posts"]
|
||||||
|
|
||||||
|
[[params.socialLinks]]
|
||||||
|
name = "mastodon"
|
||||||
|
url = "https://neph.social/@daniel_kraus"
|
||||||
|
|
||||||
|
[[params.socialLinks]]
|
||||||
|
name = "x"
|
||||||
|
url = "https://twitter.com/bovender_de"
|
||||||
|
|
||||||
|
[[params.socialLinks]]
|
||||||
|
name = "github"
|
||||||
|
url = "https://github.com/bovender"
|
||||||
|
|
||||||
|
[[params.socialLinks]]
|
||||||
|
name = "stackoverflow"
|
||||||
|
url = "https://stackoverflow.com/users/270712/bovender"
|
||||||
|
|
||||||
|
[[params.socialLinks]]
|
||||||
|
name = "linkedin"
|
||||||
|
url = "https://www.linkedin.com/in/bovender"
|
||||||
|
|
||||||
|
[menu]
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "Posts"
|
||||||
|
url = "posts/"
|
||||||
|
weight = 10
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "About"
|
||||||
|
url = "about/"
|
||||||
|
weight = 20
|
8
content/about/index.md
Normal file
8
content/about/index.md
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
title: "Content Placeholder"
|
||||||
|
_build:
|
||||||
|
render: never
|
||||||
|
list: never
|
||||||
|
publishResources: false
|
||||||
|
---
|
||||||
|
|
13
docker-compose.yml
Normal file
13
docker-compose.yml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
services:
|
||||||
|
build:
|
||||||
|
image: klakegg/hugo:ext-alpine
|
||||||
|
volumes:
|
||||||
|
- ".:/src"
|
||||||
|
server:
|
||||||
|
image: klakegg/hugo:ext-alpine
|
||||||
|
command: server
|
||||||
|
volumes:
|
||||||
|
- ".:/src"
|
||||||
|
ports:
|
||||||
|
- "1313:1313"
|
||||||
|
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"Target":"css/style.min.3b715be5bd264701c0fc591b2c4a36421d10ed026ad15fcf6d2f91991d4a77a7.css","MediaType":"text/css","Data":{"Integrity":"sha256-O3Fb5b0mRwHA/FkbLEo2Qh0Q7QJq0V/PbS+RmR1Kd6c="}}
|
1
themes/hermit-v2
Submodule
1
themes/hermit-v2
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 5ee9c821259bda1867ba3708992a8aa97bd095ed
|
Loading…
Reference in New Issue
Block a user