Initial commit. With test pages

This commit is contained in:
2024-08-24 22:06:23 -05:00
commit a9274fe540
11 changed files with 92 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
public

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "MyPlayground/themes/PaperMod"]
path = MyPlayground/themes/PaperMod
url = https://github.com/adityatelange/hugo-PaperMod.git

View File

View File

@ -0,0 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++

View File

@ -0,0 +1,8 @@
+++
title = 'Test Archive'
date = 2024-08-21T21:11:06-05:00
tags = ["testing"]
+++
This is a test archive post

View 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

View File

@ -0,0 +1,8 @@
+++
title = 'こんにちは!'
date = 2024-08-24T21:11:06-05:00
tags = ["testing", "japanese"]
+++
このページはテストです。アメリカや!ハーロ

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

0
Readme.md Normal file
View File