feat: dedicated books page
This commit is contained in:
parent
75047889ae
commit
18c07b5c0f
8 changed files with 97 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "12.6.1",
|
"version": "12.7.1",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -24,6 +24,7 @@ export default async function () {
|
||||||
{ name: 'ListenBrainz', url: 'https://listenbrainz.org/user/cdransf/', icon: 'brain' },
|
{ name: 'ListenBrainz', url: 'https://listenbrainz.org/user/cdransf/', icon: 'brain' },
|
||||||
{ name: 'Trakt', url: 'https://trakt.tv/users/cdransf', icon: 'device-tv' },
|
{ name: 'Trakt', url: 'https://trakt.tv/users/cdransf', icon: 'device-tv' },
|
||||||
{ name: 'Instapaper', url: 'https://www.instapaper.com/p/coryd', icon: 'news' },
|
{ name: 'Instapaper', url: 'https://www.instapaper.com/p/coryd', icon: 'news' },
|
||||||
|
{ name: 'Books', url: '/books', icon: 'books' },
|
||||||
{ name: 'Webrings', url: '/webrings', icon: 'heart-handshake' },
|
{ name: 'Webrings', url: '/webrings', icon: 'heart-handshake' },
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|
|
@ -251,6 +251,7 @@ nav ul li .active svg:hover {
|
||||||
.brain svg { stroke: var(--brand-listenbrainz) !important; }
|
.brain svg { stroke: var(--brand-listenbrainz) !important; }
|
||||||
.device-tv svg { stroke: var(--brand-trakt) !important; }
|
.device-tv svg { stroke: var(--brand-trakt) !important; }
|
||||||
.news svg { stroke: var(--brand-instapaper) !important; }
|
.news svg { stroke: var(--brand-instapaper) !important; }
|
||||||
|
.books svg { stroke: var(--brand-books) !important; }
|
||||||
.coffee svg { stroke: var(--brand-buy-me-a-coffee) !important; }
|
.coffee svg { stroke: var(--brand-buy-me-a-coffee) !important; }
|
||||||
.heart-handshake svg { stroke: var(--webrings) !important; }
|
.heart-handshake svg { stroke: var(--webrings) !important; }
|
||||||
.rss svg { stroke: var(--brand-rss) !important; }
|
.rss svg { stroke: var(--brand-rss) !important; }
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
--brand-listenbrainz: #e97941;
|
--brand-listenbrainz: #e97941;
|
||||||
--brand-trakt: #ed1c24;
|
--brand-trakt: #ed1c24;
|
||||||
--brand-instapaper: var(--text-color);
|
--brand-instapaper: var(--text-color);
|
||||||
|
--brand-books: #12c28e;
|
||||||
--brand-buy-me-a-coffee: #40dca5;
|
--brand-buy-me-a-coffee: #40dca5;
|
||||||
--brand-rss: #f26522;
|
--brand-rss: #f26522;
|
||||||
--webrings: #ec8fd0;
|
--webrings: #ec8fd0;
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
/* page styles */
|
/* page styles */
|
||||||
@import url('./pages/404.css') layer(page);
|
@import url('./pages/404.css') layer(page);
|
||||||
@import url('./pages/about.css') layer(page);
|
@import url('./pages/about.css') layer(page);
|
||||||
|
@import url('./pages/books.css') layer(page);
|
||||||
@import url('./pages/blogroll.css') layer(page);
|
@import url('./pages/blogroll.css') layer(page);
|
||||||
@import url('./pages/contact.css') layer(page);
|
@import url('./pages/contact.css') layer(page);
|
||||||
@import url('./pages/now.css') layer(page);
|
@import url('./pages/now.css') layer(page);
|
||||||
|
|
70
src/assets/styles/pages/books.css
Normal file
70
src/assets/styles/pages/books.css
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
.book-entry {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: var(--sizing-sm);
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
&:last-of-type {
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
& img {
|
||||||
|
border: 1px solid var(--accent-color);
|
||||||
|
border-radius: var(--rounded);
|
||||||
|
}
|
||||||
|
|
||||||
|
& img,
|
||||||
|
& picture {
|
||||||
|
max-width: calc(var(--sizing-3xl) * 4);
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
& .book-meta {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: var(--sizing-xs);
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
& p {
|
||||||
|
margin: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
max-width: 100%;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
width: fit-content;
|
||||||
|
margin-bottom: 0;
|
||||||
|
|
||||||
|
&.title {
|
||||||
|
font-size: var(--font-size-xl);
|
||||||
|
}
|
||||||
|
|
||||||
|
&.author-categories {
|
||||||
|
font-size: var(--font-size-xs);
|
||||||
|
line-height: var(--line-height-xs);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
& blockquote.description {
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 4;
|
||||||
|
overflow: hidden;
|
||||||
|
margin-bottom: var(--sizing-base);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 768px) {
|
||||||
|
.book-entry {
|
||||||
|
flex-direction: row;
|
||||||
|
gap: var(--sizing-base);
|
||||||
|
align-items: start;
|
||||||
|
|
||||||
|
& picture {
|
||||||
|
margin-bottom: var(--sizing-md);
|
||||||
|
}
|
||||||
|
|
||||||
|
& .book-meta {
|
||||||
|
align-items: start;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
22
src/pages/books/index.html
Normal file
22
src/pages/books/index.html
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
---
|
||||||
|
title: Currently reading • Books
|
||||||
|
layout: default
|
||||||
|
permalink: "/books/index.html"
|
||||||
|
---
|
||||||
|
{%- assign bookData = books | bookStatus: 'started' -%}
|
||||||
|
<h2 class="page-header">Currently reading</h2>
|
||||||
|
<p>Here's what I'm reading at the moment. <a href="/books/want-to-read/">You can also take a look at what I'm planning to read (eventually).</a></p>
|
||||||
|
<hr class="large-spacing" />
|
||||||
|
{% for book in bookData %}
|
||||||
|
{% capture alt %}{{ book.title }} by {{ book.authors }}{% endcapture %}
|
||||||
|
<article class="book-entry">
|
||||||
|
{% image book.image, alt %}
|
||||||
|
<div class="book-meta">
|
||||||
|
<p class="title"><strong>{{ book.title }}</strong></p>
|
||||||
|
{% if book.authors or book.categories %}
|
||||||
|
<p class="author-categories">{% if book.authors %}By {{ book.authors }}{% endif %}{% if book.categories %}{% if book.authors %}• {% endif %}<em>{{ book.categories }}</em>{% endif %}</p>
|
||||||
|
{% endif %}
|
||||||
|
{% if book.description %}<blockquote class="description">{{ book.description }}</blockquote>{% endif %}
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
{% endfor %}
|
Reference in a new issue