diff --git a/content/blog/_index.md b/content/blog/_index.md index 7ab7bd4..73a50b5 100644 --- a/content/blog/_index.md +++ b/content/blog/_index.md @@ -1,4 +1,3 @@ +++ title = 'Blog' -date = 2023-11-14T17:55:14Z +++ diff --git a/content/blog/Build a Second Brain.md b/content/books/Build a Second Brain.md similarity index 100% rename from content/blog/Build a Second Brain.md rename to content/books/Build a Second Brain.md diff --git a/content/blog/Dune 2 - Review.md b/content/books/Dune 2 - Review.md similarity index 100% rename from content/blog/Dune 2 - Review.md rename to content/books/Dune 2 - Review.md diff --git a/content/blog/XP-Explained.md b/content/books/XP-Explained.md similarity index 100% rename from content/blog/XP-Explained.md rename to content/books/XP-Explained.md diff --git a/content/books/_index.md b/content/books/_index.md new file mode 100644 index 0000000..4c9ef24 --- /dev/null +++ b/content/books/_index.md @@ -0,0 +1,4 @@ ++++ +title = 'Books' +date = 2025-07-22T15:15:00Z ++++ diff --git a/content/blog/deepwork-review.md b/content/books/deepwork-review.md similarity index 100% rename from content/blog/deepwork-review.md rename to content/books/deepwork-review.md diff --git a/content/blog/digital-minimalism-review.md b/content/books/digital-minimalism-review.md similarity index 100% rename from content/blog/digital-minimalism-review.md rename to content/books/digital-minimalism-review.md diff --git a/content/blog/sedated.md b/content/books/sedated.md similarity index 100% rename from content/blog/sedated.md rename to content/books/sedated.md diff --git a/content/blog/the-book-of-five-rings.md b/content/books/the-book-of-five-rings.md similarity index 100% rename from content/blog/the-book-of-five-rings.md rename to content/books/the-book-of-five-rings.md diff --git a/content/blog/the-psychology-of-money.md b/content/books/the-psychology-of-money.md similarity index 100% rename from content/blog/the-psychology-of-money.md rename to content/books/the-psychology-of-money.md diff --git a/content/blog/therepublic-review.md b/content/books/therepublic-review.md similarity index 100% rename from content/blog/therepublic-review.md rename to content/books/therepublic-review.md diff --git a/hugo.toml b/hugo.toml index 6c56fdc..cbe63a1 100644 --- a/hugo.toml +++ b/hugo.toml @@ -9,9 +9,15 @@ theme = 'risotto' [[menu.main]] name = 'Blog' pageRef = '/blog' + weight = 1 [[menu.main]] + weight = 1 name = 'Projects' pageRef = '/projects' +[[menu.main]] + weight = 10 + name = 'Books' + pageRef = '/books' [params.about] title = "John Costa" diff --git a/themes/risotto/layouts/_default/li.html b/themes/risotto/layouts/_default/li.html index e235063..a21c20b 100644 --- a/themes/risotto/layouts/_default/li.html +++ b/themes/risotto/layouts/_default/li.html @@ -1,3 +1,4 @@
  • - {{ .Title | markdownify }} + {{ $format := "02 Jan 2006" }} + {{ .Date.Format $format }} | {{ .Title | markdownify }}