This commit is contained in:
Oliver Atkinson 2024-05-08 09:46:06 -06:00
commit ed85756bfc
7 changed files with 24 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

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

1
server/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

6
server/Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "server"
version = "0.1.0"
edition = "2021"
[dependencies]

3
server/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

View File

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

4
site/config.toml Normal file
View File

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

1
site/themes/lugo Submodule

@ -0,0 +1 @@
Subproject commit ca92c2dddeee70d4627931d2c214a299143b6735