This commit is contained in:
2025-09-01 17:50:04 +00:00
commit 74f47cd2e3
10 changed files with 72 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
/public
.hugo_build.lock
/resources/_gen

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule "themes/hugo-coder"]
path = themes/hugo-coder
url = https://github.com/luizdepra/hugo-coder.git

5
archetypes/default.md Normal file
View File

@@ -0,0 +1,5 @@
+++
date = '{{ .Date }}'
draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+++

60
hugo.toml Normal file
View File

@@ -0,0 +1,60 @@
baseurl = "https://hahn1.one"
title = "JonasHahn"
theme = "hugo-coder"
languagecode = "en-us"
defaultcontentlanguage = "en"
[pagination]
pagersize = 20
[services]
[services.disqus]
shortname = "Jonas"
[markup.highlight]
style = "github-dark"
[params]
author = "Jonas Hahn"
info = "Physics student passionate about computers"
description = "Jonas Hahn's personal website"
keywords = "blog,developer,personal,university"
avatarurl = "/avatar.jpg"
favicon_32 = "/favicon_32.png"
favicon_16 = "/favicon_16.png"
favicon_svg = "/favicon.svg"
since = 2025
enabletwemoji = true
colorscheme = "auto"
hidecolorschemetoggle = false
[taxonomies]
category = "categories"
series = "series"
tag = "tags"
author = "authors"
# social links
[[params.social]]
name = "github"
icon = "fa-brands fa-github fa-2x"
weight = 1
url = "https://github.com/ascyii/"
[[params.social]]
name = "gitlab"
icon = "fa-brands fa-gitlab fa-2x"
weight = 2
url = "https://gitlab.com/ascyii/"
# menu links
[[menu.main]]
name = "Blog"
weight = 1
url = "posts/"
[[menu.main]]
name = "About"
weight = 2
url = "about/"

BIN
static/avatar.jpg Normal file
View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

BIN
static/images/favicon.svg Normal file
View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

1
themes/hugo-coder Submodule

Submodule themes/hugo-coder added at cb13ec4671