Initial commit. With test pages
This commit is contained in:
0
MyPlayground/.hugo_build.lock
Normal file
0
MyPlayground/.hugo_build.lock
Normal file
5
MyPlayground/archetypes/default.md
Normal file
5
MyPlayground/archetypes/default.md
Normal file
@ -0,0 +1,5 @@
|
||||
+++
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
date = {{ .Date }}
|
||||
draft = true
|
||||
+++
|
||||
8
MyPlayground/content/archive/testarchive.md
Normal file
8
MyPlayground/content/archive/testarchive.md
Normal file
@ -0,0 +1,8 @@
|
||||
+++
|
||||
title = 'Test Archive'
|
||||
date = 2024-08-21T21:11:06-05:00
|
||||
tags = ["testing"]
|
||||
+++
|
||||
|
||||
This is a test archive post
|
||||
|
||||
8
MyPlayground/content/posts/helloworld.md
Normal file
8
MyPlayground/content/posts/helloworld.md
Normal file
@ -0,0 +1,8 @@
|
||||
+++
|
||||
title = 'Hello World'
|
||||
date = 2024-08-24T21:11:06-05:00
|
||||
tags = ["testing", "english"]
|
||||
+++
|
||||
|
||||
This is a test. Lorem ipsum dolor
|
||||
|
||||
8
MyPlayground/content/posts/konnichiwa.md
Normal file
8
MyPlayground/content/posts/konnichiwa.md
Normal file
@ -0,0 +1,8 @@
|
||||
+++
|
||||
title = 'こんにちは!'
|
||||
date = 2024-08-24T21:11:06-05:00
|
||||
tags = ["testing", "japanese"]
|
||||
+++
|
||||
|
||||
このページはテストです。アメリカや!ハーロ
|
||||
|
||||
7
MyPlayground/content/search.md
Normal file
7
MyPlayground/content/search.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: "Search" # in any language you want
|
||||
layout: "search" # necessary for search
|
||||
# url: "/archive"
|
||||
# description: "Description for Search"
|
||||
summary: "search"
|
||||
---
|
||||
51
MyPlayground/hugo.toml
Normal file
51
MyPlayground/hugo.toml
Normal file
@ -0,0 +1,51 @@
|
||||
baseURL = 'https://myplayground.ctibule.ca/'
|
||||
languageCode = 'en-us'
|
||||
title = "Carl's Playground"
|
||||
theme = 'PaperMod'
|
||||
enableEmoji = true
|
||||
|
||||
[params]
|
||||
env = "production"
|
||||
|
||||
[params.homeInfoParams]
|
||||
Title = "Welcome in :wave:"
|
||||
Content = "Enjoy my ramblings!"
|
||||
|
||||
[[params.socialIcons]]
|
||||
name = "gitea"
|
||||
url = "https://gitea.iwanaga.moe"
|
||||
|
||||
[[params.socialIcons]]
|
||||
name = "linkedin"
|
||||
url = "https://www.linkedin.com/in/carltibule/"
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "search"
|
||||
name = "Search"
|
||||
url = "/search/"
|
||||
weight = 10
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "categories"
|
||||
name = "Categories"
|
||||
url = "/categories/"
|
||||
weight = 20
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "tags"
|
||||
name = "Tags"
|
||||
url = "/tags/"
|
||||
weight = 30
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "archive"
|
||||
name = "Archive"
|
||||
url = "/archive/"
|
||||
weight = 40
|
||||
|
||||
[outputs]
|
||||
home = [ "HTML", "RSS", "JSON" ]
|
||||
|
||||
[taxonomies]
|
||||
tag = "tags"
|
||||
category = "categories"
|
||||
1
MyPlayground/themes/PaperMod
Submodule
1
MyPlayground/themes/PaperMod
Submodule
Submodule MyPlayground/themes/PaperMod added at 58c4841c26
Reference in New Issue
Block a user