first commit
This commit is contained in:
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "themes/terminimal"]
|
||||||
|
path = themes/terminimal
|
||||||
|
url = https://github.com/pawroman/zola-theme-terminimal.git
|
||||||
50
config.toml
Normal file
50
config.toml
Normal file
@@ -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},
|
||||||
|
]
|
||||||
|
|
||||||
4
content/_index.md
Normal file
4
content/_index.md
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
+++
|
||||||
|
paginate_by = 2
|
||||||
|
sort_by = "date"
|
||||||
|
+++
|
||||||
3
content/pages/_index.md
Normal file
3
content/pages/_index.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
+++
|
||||||
|
render=false
|
||||||
|
+++
|
||||||
8
content/pages/about.md
Normal file
8
content/pages/about.md
Normal file
@@ -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:
|
||||||
6
templates/about_page.html
Normal file
6
templates/about_page.html
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{%/* extends "terminimal/templates/index.html" */%}
|
||||||
|
|
||||||
|
{%/* block extra_head */%}
|
||||||
|
<meta name="description" content="My awesome website"/>
|
||||||
|
<meta name="keywords" content="Hacking,Programming,Ranting"/>
|
||||||
|
{%/* endblock */%}
|
||||||
1
themes/terminimal
Submodule
1
themes/terminimal
Submodule
Submodule themes/terminimal added at 7f630a4e31
1
themes/zola-theme-terminimal
Submodule
1
themes/zola-theme-terminimal
Submodule
Submodule themes/zola-theme-terminimal added at 7f630a4e31
Reference in New Issue
Block a user