Compare commits

..

3 Commits

4 changed files with 51 additions and 3 deletions

2
.gitignore vendored
View File

@@ -12,5 +12,3 @@ hugo.linux
# Temporary lock file while building
/.hugo_build.lock
static/style.css

View File

@@ -4,8 +4,11 @@ date: 2025-08-13T16:58:34-07:00
draft: false
---
# Jackanope Liberty Gathering
<!--
# Spartacus Liberty Gathering
## AKA: Caravanarchy Heber / Jackanope / Pre-Jack
-->
_**Not a party. Not a rave.**_

2
run.sh
View File

@@ -6,6 +6,8 @@ cd $DIR
rm -rfv public
mkdir -pv public
if [[ ! -f static/style.css ]]; then
cp -rv themes/lugo/static/style.css static/
fi
hugo server -D --noBuildLock

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% ;
}