diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..36ee45e --- /dev/null +++ b/content/about.md @@ -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. diff --git a/content/contact.md b/content/contact.md new file mode 100644 index 0000000..cb3ae98 --- /dev/null +++ b/content/contact.md @@ -0,0 +1,6 @@ ++++ +title = "Contact" +slug = "contact" ++++ + +Feel free to write me an email to `jonas@hahn1.one`. diff --git a/content/posts/first.md b/content/posts/first.md new file mode 100644 index 0000000..16c8c8d --- /dev/null +++ b/content/posts/first.md @@ -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! diff --git a/content/projects.md b/content/projects.md new file mode 100644 index 0000000..6a7fd85 --- /dev/null +++ b/content/projects.md @@ -0,0 +1,6 @@ ++++ +title = "Projects" +slug = "projects" ++++ + +Nothing to see here... Move along! \ No newline at end of file diff --git a/hugo.toml b/hugo.toml index d979f3a..ed0e8f5 100644 --- a/hugo.toml +++ b/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/" -