🚚 rename paths for logs "watched" and "books"
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
parent
be1565be69
commit
ef3ff3ef31
6 changed files with 11 additions and 11 deletions
|
@ -5,7 +5,7 @@
|
||||||
"lists":[
|
"lists":[
|
||||||
{
|
{
|
||||||
"name": "Currently reading",
|
"name": "Currently reading",
|
||||||
"url": "https://kjelsrud.dev/logs/books/",
|
"url": "https://kjelsrud.dev/logs/bookshelf/",
|
||||||
"books":[
|
"books":[
|
||||||
{
|
{
|
||||||
"title": "Dune",
|
"title": "Dune",
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "On the shelf",
|
"name": "On the shelf",
|
||||||
"url": "https://kjelsrud.dev/logs/books/",
|
"url": "https://kjelsrud.dev/logs/bookshelf/",
|
||||||
"books":[
|
"books":[
|
||||||
{
|
{
|
||||||
"title": "The Intelligent Investor (NO)",
|
"title": "The Intelligent Investor (NO)",
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Read",
|
"name": "Read",
|
||||||
"url": "https://kjelsrud.dev/logs/books/",
|
"url": "https://kjelsrud.dev/logs/bookshelf/",
|
||||||
"books":[
|
"books":[
|
||||||
{
|
{
|
||||||
"title": "Kagurabachi: Vol. 2",
|
"title": "Kagurabachi: Vol. 2",
|
|
@ -5,7 +5,7 @@
|
||||||
"lists":[
|
"lists":[
|
||||||
{
|
{
|
||||||
"name": "Currently watching",
|
"name": "Currently watching",
|
||||||
"url": "https://kjelsrud.dev/logs/watched/",
|
"url": "https://kjelsrud.dev/logs/watchlist/",
|
||||||
"tv":[
|
"tv":[
|
||||||
{
|
{
|
||||||
"title": "ONE PIECE: Egghead Arc",
|
"title": "ONE PIECE: Egghead Arc",
|
||||||
|
@ -27,7 +27,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Watched",
|
"name": "Watched",
|
||||||
"url": "https://kjelsrud.dev/logs/watched/",
|
"url": "https://kjelsrud.dev/logs/watchlist/",
|
||||||
"tv":[
|
"tv":[
|
||||||
{
|
{
|
||||||
"title": "The Antisocial Network: Memes to Mayhem",
|
"title": "The Antisocial Network: Memes to Mayhem",
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
import SectionContainer from '../../components/SectionContainer.astro';
|
import SectionContainer from '../../components/SectionContainer.astro';
|
||||||
import biblioteca from '../../data/biblioteca.json'
|
import biblioteca from '../../data/bookshelf.json'
|
||||||
|
|
||||||
let booksRead = [];
|
let booksRead = [];
|
||||||
let booksShelf = [];
|
let booksShelf = [];
|
|
@ -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.
|
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)
|
[🧗 **MoonBoard**](/logs/moonboard)
|
||||||
|
|
||||||
[📺 **Watched**](/logs/watched)
|
[📺 **Watchlist**](/logs/watchlist)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
import SectionContainer from '../../components/SectionContainer.astro';
|
import SectionContainer from '../../components/SectionContainer.astro';
|
||||||
import tv from '../../data/watched.json'
|
import tv from '../../data/watchlist.json'
|
||||||
|
|
||||||
let watched = [];
|
let watched = [];
|
||||||
let currently = [];
|
let currently = [];
|
|
@ -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.
|
📢 **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).
|
||||||
|
|
Loading…
Add table
Reference in a new issue