commit 08a93de3a2dbf3b7c9d169bd8e49ba22b47861ca Author: caleb Date: Sat Jan 18 14:47:23 2025 -0500 first commit diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..3a07023 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/terminimal"] + path = themes/terminimal + url = https://github.com/pawroman/zola-theme-terminimal.git diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..e34c171 --- /dev/null +++ b/config.toml @@ -0,0 +1,50 @@ +# The URL the site will be built for +base_url = "https://example.com" + +# Whether to automatically compile all Sass files in the sass directory +compile_sass = true + +# Whether to build a search index to be used later on by a JavaScript library +build_search_index = false + +# The site theme to use. +theme = "terminimal" + +taxonomies = [ + {name = "tags"}, +] + +[markdown] +# Whether to do syntax highlighting +# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola +highlight_code = true + +[extra] +# Put all your custom variables here + +# The logo text - defaults to "Terminimal theme" +logo_text = "Bombadad" + +# Author name: when specified, modifies the default +# copyright text. Apart from author, it will +# contain current year and a link to the theme. +author = "Caleb B" + +background_color = "blue" + +# menu is enabled by adding menu_items (optional) +menu_items = [ + # each of these is optional, name and url are required + # $BASE_URL is going to be substituted by base_url from configuration + {name = "blog", url = "$BASE_URL"}, + + # tags should only be enabled if you have "tags" taxonomy + # see documentation below for more details + {name = "tags", url = "$BASE_URL/tags"}, + {name = "archive", url = "$BASE_URL/archive"}, + {name = "about me", url = "$BASE_URL/about"}, + + # set newtab to true to make the link open in new tab + {name = "github", url = "https://github.com/Bombadad", newtab = true}, +] + diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..ba81db4 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,4 @@ ++++ +paginate_by = 2 +sort_by = "date" ++++ diff --git a/content/pages/_index.md b/content/pages/_index.md new file mode 100644 index 0000000..f19598e --- /dev/null +++ b/content/pages/_index.md @@ -0,0 +1,3 @@ ++++ +render=false ++++ diff --git a/content/pages/about.md b/content/pages/about.md new file mode 100644 index 0000000..8e4deda --- /dev/null +++ b/content/pages/about.md @@ -0,0 +1,8 @@ ++++ +title = "About Me" +path = "about" ++++ + +Hey I'm Bombadad. Dad of two. I like to program, cook, and powerlift. I also really enjoy "ricing" my desktop/laptop setups. + +You can find me here: diff --git a/templates/about_page.html b/templates/about_page.html new file mode 100644 index 0000000..8a974c3 --- /dev/null +++ b/templates/about_page.html @@ -0,0 +1,6 @@ +{%/* extends "terminimal/templates/index.html" */%} + +{%/* block extra_head */%} + + +{%/* endblock */%} diff --git a/themes/terminimal b/themes/terminimal new file mode 160000 index 0000000..7f630a4 --- /dev/null +++ b/themes/terminimal @@ -0,0 +1 @@ +Subproject commit 7f630a4e319c089f27b6704e622b38d874406381 diff --git a/themes/zola-theme-terminimal b/themes/zola-theme-terminimal new file mode 160000 index 0000000..7f630a4 --- /dev/null +++ b/themes/zola-theme-terminimal @@ -0,0 +1 @@ +Subproject commit 7f630a4e319c089f27b6704e622b38d874406381