From 5d2c64e8df1b665ccd50b5b375eed820d8a5eeda Mon Sep 17 00:00:00 2001 From: kurets Date: Sat, 17 Dec 2022 22:57:40 +0200 Subject: [PATCH] added blog, fixed pluralization --- new-site/config.toml | 1 + new-site/content/blog/first-entry.md | 15 ++++++ new-site/content/blog/second-entry.md | 7 +++ new-site/public/blog/first-entry/index.html | 36 ++++++++++++++ new-site/public/blog/index.html | 30 ++++++++++++ new-site/public/blog/index.xml | 53 +++++++++++++++++++++ new-site/public/categories/index.xml | 13 +++++ new-site/public/index.html | 1 + new-site/public/index.xml | 14 ++++++ new-site/public/sitemap.xml | 19 ++++++-- new-site/public/tags/blog/index.html | 30 ++++++++++++ new-site/public/tags/blog/index.xml | 53 +++++++++++++++++++++ new-site/public/tags/index.html | 1 + new-site/public/tags/index.xml | 14 ++++++ 14 files changed, 283 insertions(+), 4 deletions(-) create mode 100644 new-site/content/blog/first-entry.md create mode 100644 new-site/content/blog/second-entry.md create mode 100644 new-site/public/blog/first-entry/index.html create mode 100644 new-site/public/blog/index.html create mode 100644 new-site/public/blog/index.xml create mode 100644 new-site/public/tags/blog/index.html create mode 100644 new-site/public/tags/blog/index.xml diff --git a/new-site/config.toml b/new-site/config.toml index d4246bef..13d44e9a 100644 --- a/new-site/config.toml +++ b/new-site/config.toml @@ -2,3 +2,4 @@ baseURL = 'https://vodoraslo.xyz/' languageCode = 'en-us' title = 'vodoraslo' theme = 'lugo' +pluralizelisttitles = false \ No newline at end of file diff --git a/new-site/content/blog/first-entry.md b/new-site/content/blog/first-entry.md new file mode 100644 index 00000000..d0943f76 --- /dev/null +++ b/new-site/content/blog/first-entry.md @@ -0,0 +1,15 @@ +--- +title: "Pluralization issues (Blogs instead of Blog)" +date: 2022-12-17T22:33:25+02:00 +draft: false +tags: [blog] +--- + + +### this is my first entry and i'm already having issues lol + +So I wanted to make a quick entry, see how it looks like and I stumbled upon this issue of hugo pluralzing Blog into Blogs + +You can fix this in config.tom with the following + +pluralizelisttitles = false \ No newline at end of file diff --git a/new-site/content/blog/second-entry.md b/new-site/content/blog/second-entry.md new file mode 100644 index 00000000..fd3251a9 --- /dev/null +++ b/new-site/content/blog/second-entry.md @@ -0,0 +1,7 @@ +--- +title: "Second Entry" +date: 2022-12-17T22:40:42+02:00 +draft: true +--- + +# second entry \ No newline at end of file diff --git a/new-site/public/blog/first-entry/index.html b/new-site/public/blog/first-entry/index.html new file mode 100644 index 00000000..366bc3f0 --- /dev/null +++ b/new-site/public/blog/first-entry/index.html @@ -0,0 +1,36 @@ + + + + Pluralization Issues (Blogs Instead of Blog) | vodoraslo + + + + + + + + + + + +
+

Pluralization issues (Blogs instead of Blog)

+
+ +

this is my first entry and i’m already having issues lol

+

So I wanted to make a quick entry, see how it looks like and I stumbled upon this issue of hugo pluralzing Blog into Blogs

+

You can fix this in config.tom with the following

+

pluralizelisttitles = false

+ + +
+
+ + + + + diff --git a/new-site/public/blog/index.html b/new-site/public/blog/index.html new file mode 100644 index 00000000..91d9cf90 --- /dev/null +++ b/new-site/public/blog/index.html @@ -0,0 +1,30 @@ + + + + Blog | vodoraslo + + + + + + + + + + +
+

Blog

+ +
+ + + + + diff --git a/new-site/public/blog/index.xml b/new-site/public/blog/index.xml new file mode 100644 index 00000000..06afbef1 --- /dev/null +++ b/new-site/public/blog/index.xml @@ -0,0 +1,53 @@ + + + vodoraslo + https://vodoraslo.xyz/blog/ + Recent content in Blog on vodoraslo + Hugo -- gohugo.io + en-us + Sat, 17 Dec 2022 22:33:25 +0200 + + + + + + Pluralization issues (Blogs instead of Blog) + https://vodoraslo.xyz/blog/first-entry/ + Sat, 17 Dec 2022 22:33:25 +0200 + + https://vodoraslo.xyz/blog/first-entry/ + <h3 id="this-is-my-first-entry-and-im-already-having-issues-lol">this is my first entry and i&rsquo;m already having issues lol</h3> +<p>So I wanted to make a quick entry, see how it looks like and I stumbled upon this issue of hugo pluralzing Blog into Blogs</p> +<p>You can fix this in config.tom with the following</p> +<p>pluralizelisttitles = false</p> + + + + + Hello world + https://vodoraslo.xyz/helloworld/ + Sat, 17 Dec 2022 17:20:18 +0200 + + https://vodoraslo.xyz/helloworld/ + <h1 id="obligatory-hello-world">Obligatory Hello World!</h1> +<p>trying to see which hugo theme i like best</p> +<p>had some issues with papermod and their css not working so for now i&rsquo;ll use lugo</p> +<h2 id="stuff-i-like">stuff i like</h2> +<ul> +<li>bidya games (like 5)</li> +<li>touching grass and nature in general (wanabe farmer)</li> +<li>にっぽんeese +<ul> +<li>&lsquo;ate manga</li> +<li>&lsquo;ate anime</li> +<li>luv vinnies and jp youtube simple as</li> +</ul> +</li> +</ul> +<p>i think the css looks pretty alright</p> +<p>im adding this bit in just to check if the scuffed shell script i made actually works (it&rsquo;s supposed to cd into the .git where hugo is, rsync the /public/ folder into var/www [where my site is])</p> + + + + + diff --git a/new-site/public/categories/index.xml b/new-site/public/categories/index.xml index 4085907d..eaff66d5 100644 --- a/new-site/public/categories/index.xml +++ b/new-site/public/categories/index.xml @@ -9,6 +9,19 @@ + + Pluralization issues (Blogs instead of Blog) + https://vodoraslo.xyz/blog/first-entry/ + Sat, 17 Dec 2022 22:33:25 +0200 + + https://vodoraslo.xyz/blog/first-entry/ + <h3 id="this-is-my-first-entry-and-im-already-having-issues-lol">this is my first entry and i&rsquo;m already having issues lol</h3> +<p>So I wanted to make a quick entry, see how it looks like and I stumbled upon this issue of hugo pluralzing Blog into Blogs</p> +<p>You can fix this in config.tom with the following</p> +<p>pluralizelisttitles = false</p> + + + Hello world https://vodoraslo.xyz/helloworld/ diff --git a/new-site/public/index.html b/new-site/public/index.html index 3f6984dd..bf9e028d 100644 --- a/new-site/public/index.html +++ b/new-site/public/index.html @@ -18,6 +18,7 @@ diff --git a/new-site/public/index.xml b/new-site/public/index.xml index 57897852..7b1276d7 100644 --- a/new-site/public/index.xml +++ b/new-site/public/index.xml @@ -5,10 +5,24 @@ Recent content on vodoraslo Hugo -- gohugo.io en-us + Sat, 17 Dec 2022 22:33:25 +0200 + + Pluralization issues (Blogs instead of Blog) + https://vodoraslo.xyz/blog/first-entry/ + Sat, 17 Dec 2022 22:33:25 +0200 + + https://vodoraslo.xyz/blog/first-entry/ + <h3 id="this-is-my-first-entry-and-im-already-having-issues-lol">this is my first entry and i&rsquo;m already having issues lol</h3> +<p>So I wanted to make a quick entry, see how it looks like and I stumbled upon this issue of hugo pluralzing Blog into Blogs</p> +<p>You can fix this in config.tom with the following</p> +<p>pluralizelisttitles = false</p> + + + Hello world https://vodoraslo.xyz/helloworld/ diff --git a/new-site/public/sitemap.xml b/new-site/public/sitemap.xml index 30222d03..4fc2dd93 100644 --- a/new-site/public/sitemap.xml +++ b/new-site/public/sitemap.xml @@ -2,13 +2,24 @@ + https://vodoraslo.xyz/tags/blog/ + 2022-12-17T22:33:25+02:00 + + https://vodoraslo.xyz/blog/ + 2022-12-17T22:33:25+02:00 + + https://vodoraslo.xyz/blog/first-entry/ + 2022-12-17T22:33:25+02:00 + + https://vodoraslo.xyz/tags/ + 2022-12-17T22:33:25+02:00 + + https://vodoraslo.xyz/ + 2022-12-17T22:33:25+02:00 + https://vodoraslo.xyz/helloworld/ 2022-12-17T17:20:18+02:00 https://vodoraslo.xyz/categories/ - - https://vodoraslo.xyz/tags/ - - https://vodoraslo.xyz/ diff --git a/new-site/public/tags/blog/index.html b/new-site/public/tags/blog/index.html new file mode 100644 index 00000000..30b2a952 --- /dev/null +++ b/new-site/public/tags/blog/index.html @@ -0,0 +1,30 @@ + + + + Blog | vodoraslo + + + + + + + + + + +
+

Blog

+ +
+ + + + + diff --git a/new-site/public/tags/blog/index.xml b/new-site/public/tags/blog/index.xml new file mode 100644 index 00000000..2011d9aa --- /dev/null +++ b/new-site/public/tags/blog/index.xml @@ -0,0 +1,53 @@ + + + vodoraslo + https://vodoraslo.xyz/tags/blog/ + Recent content in blog on vodoraslo + Hugo -- gohugo.io + en-us + Sat, 17 Dec 2022 22:33:25 +0200 + + + + + + Pluralization issues (Blogs instead of Blog) + https://vodoraslo.xyz/blog/first-entry/ + Sat, 17 Dec 2022 22:33:25 +0200 + + https://vodoraslo.xyz/blog/first-entry/ + <h3 id="this-is-my-first-entry-and-im-already-having-issues-lol">this is my first entry and i&rsquo;m already having issues lol</h3> +<p>So I wanted to make a quick entry, see how it looks like and I stumbled upon this issue of hugo pluralzing Blog into Blogs</p> +<p>You can fix this in config.tom with the following</p> +<p>pluralizelisttitles = false</p> + + + + + Hello world + https://vodoraslo.xyz/helloworld/ + Sat, 17 Dec 2022 17:20:18 +0200 + + https://vodoraslo.xyz/helloworld/ + <h1 id="obligatory-hello-world">Obligatory Hello World!</h1> +<p>trying to see which hugo theme i like best</p> +<p>had some issues with papermod and their css not working so for now i&rsquo;ll use lugo</p> +<h2 id="stuff-i-like">stuff i like</h2> +<ul> +<li>bidya games (like 5)</li> +<li>touching grass and nature in general (wanabe farmer)</li> +<li>にっぽんeese +<ul> +<li>&lsquo;ate manga</li> +<li>&lsquo;ate anime</li> +<li>luv vinnies and jp youtube simple as</li> +</ul> +</li> +</ul> +<p>i think the css looks pretty alright</p> +<p>im adding this bit in just to check if the scuffed shell script i made actually works (it&rsquo;s supposed to cd into the .git where hugo is, rsync the /public/ folder into var/www [where my site is])</p> + + + + + diff --git a/new-site/public/tags/index.html b/new-site/public/tags/index.html index 633d2b92..46e9c268 100644 --- a/new-site/public/tags/index.html +++ b/new-site/public/tags/index.html @@ -17,6 +17,7 @@ diff --git a/new-site/public/tags/index.xml b/new-site/public/tags/index.xml index c266a16f..476f443b 100644 --- a/new-site/public/tags/index.xml +++ b/new-site/public/tags/index.xml @@ -5,10 +5,24 @@ Recent content in Tags on vodoraslo Hugo -- gohugo.io en-us + Sat, 17 Dec 2022 22:33:25 +0200 + + Pluralization issues (Blogs instead of Blog) + https://vodoraslo.xyz/blog/first-entry/ + Sat, 17 Dec 2022 22:33:25 +0200 + + https://vodoraslo.xyz/blog/first-entry/ + <h3 id="this-is-my-first-entry-and-im-already-having-issues-lol">this is my first entry and i&rsquo;m already having issues lol</h3> +<p>So I wanted to make a quick entry, see how it looks like and I stumbled upon this issue of hugo pluralzing Blog into Blogs</p> +<p>You can fix this in config.tom with the following</p> +<p>pluralizelisttitles = false</p> + + + Hello world https://vodoraslo.xyz/helloworld/