Initial commit
This commit is contained in:
commit
db9a5a2207
12 changed files with 102 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
public
|
||||||
|
.hugo_build.lock
|
||||||
|
*.swp
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "themes/smol"]
|
||||||
|
path = themes/smol
|
||||||
|
url = https://github.com/colorchestra/smol
|
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
45
config.toml
Normal file
45
config.toml
Normal file
|
@ -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
|
||||||
|
#
|
21
content/posts/initial_commit.md
Normal file
21
content/posts/initial_commit.md
Normal file
|
@ -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.
|
||||||
|
|
||||||
|
|
8
layouts/partials/footer.html
Normal file
8
layouts/partials/footer.html
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<footer>
|
||||||
|
<p>© {{ now.Year }} <a href="{{ .Site.BaseURL }}"> <b>{{ if .Site.Copyright }}{{ .Site.Copyright }}{{ else }}{{ .Site.Title }}{{ end }}</b></a> <a href="https://creativecommons.org/licenses/by/4.0/">CC by 4.0</a>
|
||||||
|
<br/>
|
||||||
|
{{- range .Site.Menus.footer }}
|
||||||
|
<a href="{{ .URL }}"><b>{{ .Name }}</b></a>;
|
||||||
|
{{- end }}
|
||||||
|
</p>
|
||||||
|
</footer>
|
15
layouts/partials/header.html
Normal file
15
layouts/partials/header.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
<header>
|
||||||
|
<img src="/apollo.jpg" style="height:300px"/>
|
||||||
|
you@<a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>:~ $ ls .;<br>
|
||||||
|
<div style="float: right;"><span style="color:red">❌ ERROR: </span>{{ .Site.Params.subtitle }}</div><br>
|
||||||
|
<p>
|
||||||
|
<nav>
|
||||||
|
{{ with .Site.Menus.main }}
|
||||||
|
{{ range . }}
|
||||||
|
you@<a href="{{ $.Site.BaseURL }}">{{ $.Site.Title }}</a>:~ $ <a href="{{ .URL | relURL }}"><b> {{ .Name }}</b></a>;
|
||||||
|
<br/>
|
||||||
|
{{ end }}
|
||||||
|
</nav>
|
||||||
|
</p>
|
||||||
|
{{ end }}
|
||||||
|
</header>
|
BIN
static/apollo.jpg
Normal file
BIN
static/apollo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 308 KiB |
BIN
static/favicon-16x16.png
Normal file
BIN
static/favicon-16x16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 516 B |
BIN
static/favicon-32x32.png
Normal file
BIN
static/favicon-32x32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
static/favicon.ico
Normal file
BIN
static/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
1
themes/smol
Submodule
1
themes/smol
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 9c5b894c09507df23a167eaddd9a1a351d89cbf4
|
Loading…
Reference in a new issue