Compare commits

..

No commits in common. "47b979cab4908a34bd9249c9e15ad09cc9f5e297" and "c213816f3372c4c379cb99658ea4fbd9a5f67571" have entirely different histories.

7 changed files with 30 additions and 34 deletions

27
.gitignore vendored
View File

@ -1,7 +1,22 @@
public/ dist/
resources/ dist-newstyle/
deploy cabal-dev
.hugo_build.lock *.o
.direnv/ *.hi
*.chi
*.chs.h
*.dyn_o
*.dyn_hi
.hpc
.hsenv
.cabal-sandbox/
cabal.sandbox.config
*.prof
*.aux
*.hp
.stack-work/
_cache/
_site/
drafts/
.envrc .envrc
*.swp .direnv/

4
content/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
public/
resources/
deploy
.hugo_build.lock

View File

@ -1,5 +1,4 @@
+++ +++
title = 'ChaosZone'
date = 2025-06-01T22:39:26+02:00 date = 2025-06-01T22:39:26+02:00
draft = true draft = true
+++ +++

View File

@ -5,5 +5,6 @@
pkgs.mkShell { pkgs.mkShell {
packages = with pkgs; [ packages = with pkgs; [
hugo hugo
vim
]; ];
} }

View File

@ -1,7 +1,5 @@
{{ partial "header.html" . }} {{ partial "header.html" . }}
<h1>{{ .Title }}</h1>
{{ .Content }} {{ .Content }}
{{ partial "footer.html" . }} {{ partial "footer.html" . }}

Binary file not shown.

View File

@ -18,27 +18,12 @@ html {
background-color: var(--bg-color); background-color: var(--bg-color);
color: var(--font-color); color: var(--font-color);
font-family: var(--main-font); font-family: var(--main-font);
min-height: 100vh;
font-size: 20pt; font-size: 20pt;
} }
body { body {
padding: 3em 3em 0; margin: 3em;
min-height: 100vh;
box-sizing: border-box;
display: grid;
grid-template-areas:
"navigation . main"
"footer footer footer";
grid-template-columns: 225px 25px auto;
grid-template-rows: auto 50px;
margin: 0;
}
header {
grid-area: navigation;
justify-self: stretch;
padding-right: 25px;
border-right: 5px solid var(--hl-color);
} }
nav a, nav a:visited { nav a, nav a:visited {
@ -58,22 +43,16 @@ nav li {
.logo { .logo {
display: inline-block; display: inline-block;
padding: 0.5em; padding: 0.5em;
border-radius: 50%; border-radius: 23px;
background-color: var(--hl-color); background-color: var(--hl-color);
} }
.logo img { .logo img {
max-width: 5em; max-width: 8em;
} }
main { main {
grid-area: main;
justify-self: stretch;
padding: 2em; padding: 2em;
border-radius: 23px; border-radius: 23px;
background-color: var(--box-bg); background-color: var(--box-bg);
} }
footer {
grid-area: footer;
}