Initial Commit

This commit is contained in:
germax26 2024-07-21 20:03:26 +10:00
commit b7c73d9662
Signed by: germax26
SSH Key Fingerprint: SHA256:gW4yOSeCn38WdM5SmB8SmFcBPXVj8UfS2sbQjrDdAWo
6 changed files with 60 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
public/

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "themes/lugo"]
path = themes/lugo
url = https://github.com/LukeSmithxyz/lugo.git

6
archetypes/default.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

4
config.toml Normal file
View File

@ -0,0 +1,4 @@
baseURL = "https://blog.germax26.net/"
languageCode = "en-gb"
title = "Germax26's Blog"
theme = 'lugo'

45
static/style.css Normal file
View File

@ -0,0 +1,45 @@
body {
font-family: sans-serif ;
background: #110000 ;
color: #ccc ;
}
main {
max-width: 800px ;
margin: auto ;
}
img {
max-width: 100% ;
}
header h1 {
text-align: center ;
}
footer {
text-align: center ;
clear: both ;
}
/* For TAGLIST.HTML */
.taglist {
text-align: center ;
clear: both ;
}
/* For NEXTPREV.HTML */
#nextprev {
/* The container for both the previous and next articles. */
}
#prevart {
float: left ;
text-align: left ;
}
#nextart {
float: right ;
text-align: right ;
}
#nextart,#prevart {
max-width: 33% ;
}

1
themes/lugo Submodule

@ -0,0 +1 @@
Subproject commit 62ac46a2955d59080cbde8d5c73c16502bfa670f