diff --git a/src/data/biblioteca.json b/src/data/bookshelf.json similarity index 98% rename from src/data/biblioteca.json rename to src/data/bookshelf.json index 680064f..fe6e2d8 100644 --- a/src/data/biblioteca.json +++ b/src/data/bookshelf.json @@ -5,7 +5,7 @@ "lists":[ { "name": "Currently reading", - "url": "https://kjelsrud.dev/logs/books/", + "url": "https://kjelsrud.dev/logs/bookshelf/", "books":[ { "title": "Dune", @@ -16,7 +16,7 @@ }, { "name": "On the shelf", - "url": "https://kjelsrud.dev/logs/books/", + "url": "https://kjelsrud.dev/logs/bookshelf/", "books":[ { "title": "The Intelligent Investor (NO)", @@ -33,7 +33,7 @@ }, { "name": "Read", - "url": "https://kjelsrud.dev/logs/books/", + "url": "https://kjelsrud.dev/logs/bookshelf/", "books":[ { "title": "Kagurabachi: Vol. 2", diff --git a/src/data/watched.json b/src/data/watchlist.json similarity index 99% rename from src/data/watched.json rename to src/data/watchlist.json index 21fa042..ef9400a 100644 --- a/src/data/watched.json +++ b/src/data/watchlist.json @@ -5,7 +5,7 @@ "lists":[ { "name": "Currently watching", - "url": "https://kjelsrud.dev/logs/watched/", + "url": "https://kjelsrud.dev/logs/watchlist/", "tv":[ { "title": "ONE PIECE: Egghead Arc", @@ -27,7 +27,7 @@ }, { "name": "Watched", - "url": "https://kjelsrud.dev/logs/watched/", + "url": "https://kjelsrud.dev/logs/watchlist/", "tv":[ { "title": "The Antisocial Network: Memes to Mayhem", diff --git a/src/pages/logs/books.astro b/src/pages/logs/bookshelf.astro similarity index 97% rename from src/pages/logs/books.astro rename to src/pages/logs/bookshelf.astro index aa47469..edacc9b 100644 --- a/src/pages/logs/books.astro +++ b/src/pages/logs/bookshelf.astro @@ -1,6 +1,6 @@ --- import SectionContainer from '../../components/SectionContainer.astro'; -import biblioteca from '../../data/biblioteca.json' +import biblioteca from '../../data/bookshelf.json' let booksRead = []; let booksShelf = []; diff --git a/src/pages/logs/index.md b/src/pages/logs/index.md index 2068d84..1b7871c 100644 --- a/src/pages/logs/index.md +++ b/src/pages/logs/index.md @@ -7,8 +7,8 @@ All my logs where I keep track of stuff I’ve watched, things I’ve read and m I don’t use any third-party services for my logs, I store everything in a JSON-format for this website. -[πŸ“š **Books**](/logs/books) +[πŸ“š **Bookshelf**](/logs/bookshelf) [πŸ§— **MoonBoard**](/logs/moonboard) -[πŸ“Ί **Watched**](/logs/watched) +[πŸ“Ί **Watchlist**](/logs/watchlist) diff --git a/src/pages/logs/watched.astro b/src/pages/logs/watchlist.astro similarity index 97% rename from src/pages/logs/watched.astro rename to src/pages/logs/watchlist.astro index b3f76b7..89024ec 100644 --- a/src/pages/logs/watched.astro +++ b/src/pages/logs/watchlist.astro @@ -1,6 +1,6 @@ --- import SectionContainer from '../../components/SectionContainer.astro'; -import tv from '../../data/watched.json' +import tv from '../../data/watchlist.json' let watched = []; let currently = []; diff --git a/src/pages/now.md b/src/pages/now.md index 30c4dc6..277c2c0 100644 --- a/src/pages/now.md +++ b/src/pages/now.md @@ -14,6 +14,6 @@ layout: "../layouts/Layout.astro" πŸ“’ **BOSkonf:** As last year's conference was a success, we wanted to continue it! I have again taken on the leading role and am currently planning this year's iteration of [**the conference**](https://boskonf.no/en) with other volunteers. -πŸ“– **Reading:** If you want to check out what I'm currently reading, check out [**my bookshelf**](/logs/books). +πŸ“– **Reading:** If you want to check out what I'm currently reading, check out [**my bookshelf**](/logs/bookshelf). -πŸ‘€ **Watching:** If you want to check out what I'm currently watching, check out [**my tv-logs**](/logs/watched). +πŸ‘€ **Watching:** If you want to check out what I'm currently watching, check out [**my tv-logs**](/logs/watchlist).