diff --git a/content/_index.html b/content/_index.html new file mode 100644 index 0000000..16e13e8 --- /dev/null +++ b/content/_index.html @@ -0,0 +1,8 @@ +

Home

+ +

It's where the heart is.

+ +

Our heart can't hear you though, so if you want to contact us you might want to do it }}">over here.

+ +

It can't say much either, so if you want to know about us, check us out }}">over +here.

diff --git a/content/pages/about.html b/content/about.html similarity index 100% rename from content/pages/about.html rename to content/about.html diff --git a/content/pages/contact.html b/content/contact.html similarity index 100% rename from content/pages/contact.html rename to content/contact.html diff --git a/content/home.html b/content/home.html new file mode 100644 index 0000000..8f599a6 --- /dev/null +++ b/content/home.html @@ -0,0 +1,6 @@ +--- +title: Home +--- +

Home

+ +

It's where the heart is.

diff --git a/content/index.html b/content/index.html deleted file mode 100644 index 66f4324..0000000 --- a/content/index.html +++ /dev/null @@ -1,3 +0,0 @@ -

Hi there!

- -

Welcome to the site!

diff --git a/hugo.toml b/hugo.toml deleted file mode 100644 index 910b5f0..0000000 --- a/hugo.toml +++ /dev/null @@ -1,4 +0,0 @@ -baseURL = 'https://example.org/' -languageCode = 'en-us' -title = 'My New Hugo Site' -theme = "example-theme" diff --git a/hugo.yaml b/hugo.yaml new file mode 100644 index 0000000..368b6be --- /dev/null +++ b/hugo.yaml @@ -0,0 +1,4 @@ +baseUrl: 'https://example.org/' +languageCode: 'en-us' +title: 'My Badass New Hugo Site' +theme: 'example-theme' diff --git a/themes/example-theme/hugo.toml b/themes/example-theme/hugo.toml deleted file mode 100644 index 890e58d..0000000 --- a/themes/example-theme/hugo.toml +++ /dev/null @@ -1,23 +0,0 @@ -baseURL = 'https://example.org/' -languageCode = 'en-us' -title = 'My New Hugo Site' - -[[menus.main]] -name = 'Home' -pageRef = '/' -weight = 10 - -[[menus.main]] -name = 'Posts' -pageRef = '/posts' -weight = 20 - -[[menus.main]] -name = 'Tags' -pageRef = '/tags' -weight = 30 - -[module] - [module.hugoVersion] - extended = false - min = "0.116.0"