diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..85a1daf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/public \ No newline at end of file diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..c3cf80b --- /dev/null +++ b/content/_index.md @@ -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. \ No newline at end of file diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..8a2052e --- /dev/null +++ b/content/about.md @@ -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. diff --git a/content/post/_index.md b/content/post/_index.md new file mode 100644 index 0000000..e7eb988 --- /dev/null +++ b/content/post/_index.md @@ -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"] ++++ diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..22ba5d3 --- /dev/null +++ b/hugo.toml @@ -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 diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..20daa57 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,2 @@ + + diff --git a/layouts/partials/lang.html b/layouts/partials/lang.html new file mode 100644 index 0000000..e69de29