First post
This commit is contained in:
8
content/about.md
Normal file
8
content/about.md
Normal 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
6
content/contact.md
Normal 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
14
content/posts/first.md
Normal 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
6
content/projects.md
Normal file
@@ -0,0 +1,6 @@
|
||||
+++
|
||||
title = "Projects"
|
||||
slug = "projects"
|
||||
+++
|
||||
|
||||
Nothing to see here... Move along!
|
||||
20
hugo.toml
20
hugo.toml
@@ -4,13 +4,11 @@ theme = "hugo-coder"
|
||||
languagecode = "en-us"
|
||||
defaultcontentlanguage = "en"
|
||||
|
||||
ignoreLogs = ['warning-goldmark-raw-html']
|
||||
|
||||
[pagination]
|
||||
pagersize = 20
|
||||
|
||||
[services]
|
||||
[services.disqus]
|
||||
shortname = "Jonas"
|
||||
|
||||
[markup.highlight]
|
||||
style = "github-dark"
|
||||
|
||||
@@ -26,7 +24,6 @@ style = "github-dark"
|
||||
favicon_svg = "/favicon.svg"
|
||||
|
||||
since = 2025
|
||||
enabletwemoji = true
|
||||
colorscheme = "auto"
|
||||
hidecolorschemetoggle = false
|
||||
|
||||
@@ -36,7 +33,6 @@ style = "github-dark"
|
||||
tag = "tags"
|
||||
author = "authors"
|
||||
|
||||
# social links
|
||||
[[params.social]]
|
||||
name = "github"
|
||||
icon = "fa-brands fa-github fa-2x"
|
||||
@@ -48,13 +44,19 @@ style = "github-dark"
|
||||
weight = 2
|
||||
url = "https://gitlab.com/ascyii/"
|
||||
|
||||
# menu links
|
||||
[[menu.main]]
|
||||
name = "Blog"
|
||||
weight = 1
|
||||
url = "posts/"
|
||||
[[menu.main]]
|
||||
name = "About"
|
||||
name = "Projects"
|
||||
weight = 2
|
||||
url = "projects/"
|
||||
[[menu.main]]
|
||||
name = "Contact"
|
||||
weight = 3
|
||||
url = "contact/"
|
||||
[[menu.main]]
|
||||
name = "About"
|
||||
weight = 4
|
||||
url = "about/"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user