add other hugo data

This commit is contained in:
frosty 2024-05-18 01:25:38 -04:00
parent 381c04bd1d
commit a108386353
8 changed files with 66 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/public

5
archetypes/default.md Normal file
View file

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

5
content/_index.md Normal file
View file

@ -0,0 +1,5 @@
# Welcome
Hello and welcome, this is my personal website. It's fairly lackluster at the moment, but I plan to expand it as time passes with more interesting things whenever I see fit.
If you'd like to learn more about me, you can check the [about](about) page. With all that being said, have fun exploring.

11
content/about.md Normal file
View file

@ -0,0 +1,11 @@
+++
title = "About"
+++
Who am I? I'm still not 100% sure, but I usually go by frosty (lowercase). My main interests are software development and anything Linux related.
Most of my machines use some form of a minimal window manager, such as [dwm](https://dwm.suckless.org/) or [Openbox](http://openbox.org/wiki/Main_Page). These two are my bread and butter, and are my favorites to use. I recommend [Openbox](http://openbox.org/wiki/Main_Page) with the [tint2](https://gitlab.com/o9000/tint2) panel to new window manager users coming from a desktop environment.
I have a few computers at home that I use for servers, development, and playing around. Most of my machines run a variant of either Arch Linux or Debian. I used to use Windows for most things, but I've stopped using it since then.
I like [gruvbox](https://github.com/morhetz/gruvbox), btw.

7
content/post/_index.md Normal file
View file

@ -0,0 +1,7 @@
+++
aliases = ["posts", "articles", "blog", "showcase", "docs"]
title = "Posts"
author = "Hugo Authors"
description = "Example posts demonstrating hugo's markup features"
tags = ["index"]
+++

35
hugo.toml Normal file
View file

@ -0,0 +1,35 @@
baseURL = "https://www.st0rm.win"
theme = "risotto"
title = "frostalicious"
author = "frosty"
[params.theme]
palette = "gruvbox-dark"
[params.about]
title = "frostalicious"
description = "Hobbyist developer and Linux enthusiast"
[[params.socialLinks]]
icon = "fa-brands fa-gitlab"
title = "GitLab"
url = "https://github.com/frostalicious"
[[params.socialLinks]]
icon = "fa-brands fa-flickr"
title = "Flickr"
url = "https://www.flickr.com/photos/frostyfalls"
[[params.socialLinks]]
icon = "fa-solid fa-envelope"
title = "Email"
url = "mailto:passedgoandgot200@gmail.com"
[[menu.main]]
identifier = "about"
name = "About"
url = "/about/"
weight = 10
[markup.goldmark.renderer]
unsafe = true

View file

@ -0,0 +1,2 @@
<p class="copyright">{{ .Site.Copyright | markdownify }}</p>
<p class="advertisement">Powered by <a href="https://gohugo.io/">Hugo</a> and <a href="https://github.com/joeroe/risotto">risotto</a>.</p>

View file