Compare commits
No commits in common. "2d99b91d4c3bcdca41f073bebbe1e3078f512b3d" and "2ecf8fae6b9be3115be7e5f2542655852550252d" have entirely different histories.
2d99b91d4c
...
2ecf8fae6b
9 changed files with 34 additions and 18 deletions
|
@ -1,8 +0,0 @@
|
||||||
<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>
|
|
|
@ -1,6 +0,0 @@
|
||||||
---
|
|
||||||
title: Home
|
|
||||||
---
|
|
||||||
<h1>Home</h1>
|
|
||||||
|
|
||||||
<p>It's where the heart is.</p>
|
|
3
content/index.html
Normal file
3
content/index.html
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<h1>Hi there!</h1>
|
||||||
|
|
||||||
|
<p>Welcome to the site!</p>
|
4
hugo.toml
Normal file
4
hugo.toml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
baseURL = 'https://example.org/'
|
||||||
|
languageCode = 'en-us'
|
||||||
|
title = 'My New Hugo Site'
|
||||||
|
theme = "example-theme"
|
|
@ -1,4 +0,0 @@
|
||||||
baseUrl: 'https://example.org/'
|
|
||||||
languageCode: 'en-us'
|
|
||||||
title: 'My Badass New Hugo Site'
|
|
||||||
theme: 'example-theme'
|
|
23
themes/example-theme/hugo.toml
Normal file
23
themes/example-theme/hugo.toml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
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"
|
|
@ -1,3 +1,7 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
|
{{ range site.RegularPages }}
|
||||||
|
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
||||||
|
{{ .Summary }}
|
||||||
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in a new issue