Initialise Hugo
This commit is contained in:
parent
66f3d5bd25
commit
b0b64876ae
5 changed files with 23 additions and 0 deletions
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "themes/ananke"]
|
||||
path = themes/ananke
|
||||
url = https://github.com/theNewDynamic/gohugo-theme-ananke.git
|
5
archetypes/default.md
Normal file
5
archetypes/default.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
+++
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
date = {{ .Date }}
|
||||
draft = true
|
||||
+++
|
10
content/posts/my-first-post.md
Normal file
10
content/posts/my-first-post.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
+++
|
||||
title = 'My First Post'
|
||||
date = 2024-06-30T10:37:00+01:00
|
||||
draft = false
|
||||
+++
|
||||
## Introduction
|
||||
|
||||
This is **bold** text, and this is *emphasized* text.
|
||||
|
||||
Visit the [Hugo](https://gohugo.io) website!
|
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 = 'ananke'
|
1
themes/ananke
Submodule
1
themes/ananke
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 33fbda0e9d3e97c92af5d195be94e8eea8003239
|
Loading…
Add table
Add a link
Reference in a new issue