commit 2af178b887e12fa31e786ddcc8066f14d3c41848 Author: alistair Date: Tue Oct 3 11:05:03 2023 +0100 initial commit with working but minimal homepage diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ba66d2f --- /dev/null +++ b/.gitignore @@ -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 \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..9f635e0 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/lugo"] + path = themes/lugo + url = https://github.com/LukeSmithxyz/lugo diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..3733e07 --- /dev/null +++ b/content/_index.md @@ -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! \ No newline at end of file diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..270abbb --- /dev/null +++ b/hugo.toml @@ -0,0 +1,4 @@ +baseURL = 'https://example.org/' +languageCode = 'en-us' +title = 'My New Hugo Site' +theme = 'lugo' diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..d3b2088 --- /dev/null +++ b/static/style.css @@ -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% ; +} diff --git a/themes/lugo b/themes/lugo new file mode 160000 index 0000000..62ac46a --- /dev/null +++ b/themes/lugo @@ -0,0 +1 @@ +Subproject commit 62ac46a2955d59080cbde8d5c73c16502bfa670f