initial commit with working but minimal homepage

master
alistair 2 years ago
commit 2af178b887

44
.gitignore vendored

@ -0,0 +1,44 @@
# Hugo output directory
public/
# Cache and temporary files
resources/_gen/
resources/_gen_assets/
resources/_gen_images/
resources/_gen_static/
# Ignore any other Hugo-generated or build-related files
resources/_gen_data/
resources/_gen_media/
# Hugo config file
# config.toml
# Exclude any local development files (customize this as needed)
.DS_Store
Thumbs.db
# Ignore log files
*.log
# Ignore certain editor/IDE specific files
.vscode/
.idea/
# Ignore node_modules (if you're using npm/yarn)
node_modules/
# Ignore other development and build artifacts
.sass-cache/
.cache/
.vagrant/
.terraform/
# Ignore compiled binaries
*.exe
*.dll
*.so
*.dylib
# Temporary lock file while building
/.hugo_build.lock

3
.gitmodules vendored

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

@ -0,0 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++

@ -0,0 +1,11 @@
+++
title = 'The Kirks'
date = 2023-10-03T10:46:57+01:00
draft = false
+++
# Home
You've found the Kirks' homepage.
Not much to see here yet, but give it time!

@ -0,0 +1,4 @@
baseURL = 'https://example.org/'
languageCode = 'en-us'
title = 'My New Hugo Site'
theme = 'lugo'

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

@ -0,0 +1 @@
Subproject commit 62ac46a2955d59080cbde8d5c73c16502bfa670f
Loading…
Cancel
Save