commit db9a5a22077d778db8253b09594ed6b9bce9341b Author: Roddy González Date: Sun May 12 17:45:35 2024 +0200 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d0c40c8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +public +.hugo_build.lock +*.swp diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..91dadee --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/smol"] + path = themes/smol + url = https://github.com/colorchestra/smol diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..b935885 --- /dev/null +++ b/config.toml @@ -0,0 +1,45 @@ +baseURL = 'https://vsis.online/' +languageCode = 'en-us' +title = 'vsis.online' +theme = 'smol' +copyright = 'vsis.online' + +# Parameters +[params] + subtitle = "No such vsis or online." + dateFmt = "2006.01.02 15:04" + +# Header +[menu] + [[menu.main]] + identifier = "posts" + name = "Posts" + url = "/posts/" + weight = 1 + + [[menu.main]] + identifier = "categories" + name = "Categories" + url = "/categories/" + weight = 2 + + [[menu.main]] + identifier = "tags" + name = "Tags" + url = "/tags/" + weight = 3 + +# Footer + [[menu.footer]] + name = "😺 My pet photos" + url = "https://mastodon.social/@erroddy" + weight = 1 + [[menu.footer]] + name = "⌨️ My BSD/UNIX thoughs" + url = "https://mastodon.bsd.cafe/@release_candidate" + weight = 2 + [[menu.footer]] + name = "🇨🇱 My feddit corner" + url = "https://feddit.cl/u/vsis" + weight = 3 +# diff --git a/content/posts/initial_commit.md b/content/posts/initial_commit.md new file mode 100644 index 0000000..bedcd92 --- /dev/null +++ b/content/posts/initial_commit.md @@ -0,0 +1,21 @@ +--- +title: "Initial commit" +date: 2024-05-12T17:13:32+02:00 +slug: 2024-05-12-initial_commit +type: posts +draft: false +categories: + - personal +tags: + - vsis.online +--- + +So, this is my blog. +I will share from time to time some of my thoughs and other nonsense. +It will mostly be about Unices, computers, Linux, BSDs and stuff like that. + + +Some of the tuturials/procedures I see on the internet will be put here, too. +The main purpose is that I should never have to search for them again. + + diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..5232b53 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,8 @@ + diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..48683c9 --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,15 @@ +
+ + you@{{ .Site.Title }}:~ $ ls .;
+
❌ ERROR: {{ .Site.Params.subtitle }}

+

+

+

+ {{ end }} +
diff --git a/static/apollo.jpg b/static/apollo.jpg new file mode 100644 index 0000000..2fe6552 Binary files /dev/null and b/static/apollo.jpg differ diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png new file mode 100644 index 0000000..a2e30ac Binary files /dev/null and b/static/favicon-16x16.png differ diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png new file mode 100644 index 0000000..c90968d Binary files /dev/null and b/static/favicon-32x32.png differ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..274612c Binary files /dev/null and b/static/favicon.ico differ diff --git a/themes/smol b/themes/smol new file mode 160000 index 0000000..9c5b894 --- /dev/null +++ b/themes/smol @@ -0,0 +1 @@ +Subproject commit 9c5b894c09507df23a167eaddd9a1a351d89cbf4