Compare commits

...

2 commits

Author SHA1 Message Date
Correl Roush
2d99b91d4c Fix up the content
All checks were successful
/ build (push) Successful in 17s
2024-09-06 00:49:12 -04:00
Correl Roush
c71c71e69e Remove page list and summaries from home page 2024-09-06 00:48:18 -04:00
9 changed files with 18 additions and 34 deletions

8
content/_index.html Normal file
View file

@ -0,0 +1,8 @@
<h1>Home</h1>
<p>It's where the heart is.<p>
<p>Our heart can't hear you though, so if you want to contact us you might want to do it <a href="{{< ref "contact" >}}">over here.</a></p>
<p>It can't say much either, so if you want to know about us, check us out <a href="{{< ref "about">}}">over
here.</a></p>

6
content/home.html Normal file
View file

@ -0,0 +1,6 @@
---
title: Home
---
<h1>Home</h1>
<p>It's where the heart is.</p>

View file

@ -1,3 +0,0 @@
<h1>Hi there!</h1>
<p>Welcome to the site!</p>

View file

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

4
hugo.yaml Normal file
View file

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

View file

@ -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"

View file

@ -1,7 +1,3 @@
{{ define "main" }}
{{ .Content }}
{{ range site.RegularPages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ .Summary }}
{{ end }}
{{ end }}