Add first post
This commit is contained in:
parent
49b4aeba10
commit
41a264a32b
|
@ -0,0 +1,13 @@
|
|||
# Generated files by hugo
|
||||
/public/
|
||||
/resources/_gen/
|
||||
/assets/jsconfig.json
|
||||
hugo_stats.json
|
||||
|
||||
# Executable may be added to repository
|
||||
hugo.exe
|
||||
hugo.darwin
|
||||
hugo.linux
|
||||
|
||||
# Temporary lock file while building
|
||||
/.hugo_build.lock
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "Archive"
|
||||
layout: "archives"
|
||||
# url: "/archives"
|
||||
summary: "archives"
|
||||
---
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
author: "Roland Thomas Jr"
|
||||
title: "Welcome to my blog!"
|
||||
date: "2023-06-07"
|
||||
description: ""
|
||||
tags: ["post"]
|
||||
ShowToc: false
|
||||
ShowBreadCrumbs: false
|
||||
---
|
||||
|
||||
Welcome to rtj.dev!
|
||||
|
||||
---
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: "Search"
|
||||
layout: "search"
|
||||
---
|
36
hugo.toml
36
hugo.toml
|
@ -1,16 +1,11 @@
|
|||
baseURL = 'https://rtj.dev/'
|
||||
languageCode = 'en-us'
|
||||
title = 'rtj.dev'
|
||||
|
||||
paginate = 10
|
||||
theme = 'PaperMod'
|
||||
|
||||
[params]
|
||||
foo = 'bar'
|
||||
|
||||
|
||||
# home-info mode
|
||||
[params.homeInfoParams]
|
||||
Title = "Hi there \U0001F44B"
|
||||
Title = "Roland Thomas Jr \U0001F525"
|
||||
Content = 'Welcome to my blog'
|
||||
|
||||
[[params.socialIcons]]
|
||||
|
@ -24,3 +19,30 @@ theme = 'PaperMod'
|
|||
[[params.socialIcons]]
|
||||
name = 'credly'
|
||||
url = 'https://credly.com/users/roland-thomas-jr'
|
||||
|
||||
[languages.en]
|
||||
languageName = 'English'
|
||||
weight = 1
|
||||
|
||||
[languages.en.taxonomies]
|
||||
category = "categories"
|
||||
tag = "tags"
|
||||
series = "series"
|
||||
|
||||
[[languages.en.menu.main]]
|
||||
name = "Archive"
|
||||
url = "archives"
|
||||
weight = 5
|
||||
|
||||
[[languages.en.menu.main]]
|
||||
name = "Search"
|
||||
url = "search/"
|
||||
weight = 10
|
||||
|
||||
[[languages.en.menu.main]]
|
||||
name = "Tags"
|
||||
url = "tags/"
|
||||
weight = 1
|
||||
|
||||
[outputs]
|
||||
home = [ "HTML", "RSS", "JSON" ]
|
Loading…
Reference in New Issue