First post

This commit is contained in:
2025-09-01 18:13:53 +00:00
parent 74f47cd2e3
commit 24fa4ec66f
5 changed files with 45 additions and 9 deletions

8
content/about.md Normal file
View File

@@ -0,0 +1,8 @@
+++
title = "About"
date = "2025-09-01"
aliases = ["about-me", "about", "contact"]
author = "Jonas Hahn"
+++
Physics student and computer enthusiast. Always curious and exploring new ideas.

6
content/contact.md Normal file
View File

@@ -0,0 +1,6 @@
+++
title = "Contact"
slug = "contact"
+++
Feel free to write me an email to `jonas@hahn1.one`.

14
content/posts/first.md Normal file
View File

@@ -0,0 +1,14 @@
+++
draft = true
date = 2025-09-01T18:09:13Z
title = "First post"
description = ""
slug = ""
authors = []
tags = []
categories = []
externalLink = ""
series = []
+++
My first blog post!

6
content/projects.md Normal file
View File

@@ -0,0 +1,6 @@
+++
title = "Projects"
slug = "projects"
+++
Nothing to see here... Move along!

View File

@@ -4,13 +4,11 @@ theme = "hugo-coder"
languagecode = "en-us" languagecode = "en-us"
defaultcontentlanguage = "en" defaultcontentlanguage = "en"
ignoreLogs = ['warning-goldmark-raw-html']
[pagination] [pagination]
pagersize = 20 pagersize = 20
[services]
[services.disqus]
shortname = "Jonas"
[markup.highlight] [markup.highlight]
style = "github-dark" style = "github-dark"
@@ -26,7 +24,6 @@ style = "github-dark"
favicon_svg = "/favicon.svg" favicon_svg = "/favicon.svg"
since = 2025 since = 2025
enabletwemoji = true
colorscheme = "auto" colorscheme = "auto"
hidecolorschemetoggle = false hidecolorschemetoggle = false
@@ -36,7 +33,6 @@ style = "github-dark"
tag = "tags" tag = "tags"
author = "authors" author = "authors"
# social links
[[params.social]] [[params.social]]
name = "github" name = "github"
icon = "fa-brands fa-github fa-2x" icon = "fa-brands fa-github fa-2x"
@@ -48,13 +44,19 @@ style = "github-dark"
weight = 2 weight = 2
url = "https://gitlab.com/ascyii/" url = "https://gitlab.com/ascyii/"
# menu links
[[menu.main]] [[menu.main]]
name = "Blog" name = "Blog"
weight = 1 weight = 1
url = "posts/" url = "posts/"
[[menu.main]] [[menu.main]]
name = "About" name = "Projects"
weight = 2 weight = 2
url = "projects/"
[[menu.main]]
name = "Contact"
weight = 3
url = "contact/"
[[menu.main]]
name = "About"
weight = 4
url = "about/" url = "about/"