From 41a264a32ba0a77f9397ba44aa491873a56e61e7 Mon Sep 17 00:00:00 2001 From: Roland Thomas Date: Wed, 7 Jun 2023 19:25:58 -0400 Subject: [PATCH] Add first post --- .gitignore | 13 +++++++++++++ .hugo_build.lock | 0 content/archives.md | 6 ++++++ content/posts/welcome.md | 13 +++++++++++++ content/search.md | 4 ++++ hugo.toml | 38 ++++++++++++++++++++++++++++++-------- 6 files changed, 66 insertions(+), 8 deletions(-) create mode 100644 .gitignore delete mode 100644 .hugo_build.lock create mode 100644 content/archives.md create mode 100644 content/posts/welcome.md create mode 100644 content/search.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7b62a71 --- /dev/null +++ b/.gitignore @@ -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 \ No newline at end of file diff --git a/.hugo_build.lock b/.hugo_build.lock deleted file mode 100644 index e69de29..0000000 diff --git a/content/archives.md b/content/archives.md new file mode 100644 index 0000000..95b4db5 --- /dev/null +++ b/content/archives.md @@ -0,0 +1,6 @@ +--- +title: "Archive" +layout: "archives" +# url: "/archives" +summary: "archives" +--- \ No newline at end of file diff --git a/content/posts/welcome.md b/content/posts/welcome.md new file mode 100644 index 0000000..2938aab --- /dev/null +++ b/content/posts/welcome.md @@ -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! + +--- \ No newline at end of file diff --git a/content/search.md b/content/search.md new file mode 100644 index 0000000..1c9b881 --- /dev/null +++ b/content/search.md @@ -0,0 +1,4 @@ +--- +title: "Search" +layout: "search" +--- \ No newline at end of file diff --git a/hugo.toml b/hugo.toml index 01b3ba1..72e792d 100644 --- a/hugo.toml +++ b/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]] @@ -23,4 +18,31 @@ theme = 'PaperMod' [[params.socialIcons]] name = 'credly' - url = 'https://credly.com/users/roland-thomas-jr' \ No newline at end of file + 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" ] \ No newline at end of file