thomaswilson-sveltekit/src/routes/blog/+page.svelte

149 lines
3.4 KiB
Svelte
Raw Normal View History

2022-04-16 10:43:45 +00:00
<script lang="ts">
2022-08-21 16:18:06 +00:00
import type { PageData } from './$types';
import Navbar from '$lib/components/Navbar.svelte';
2022-08-21 16:18:06 +00:00
import { intlFormat } from 'date-fns';
export let data: PageData;
$: ({
posts,
firstPost,
numberOfPosts,
daysSinceLastPublish,
daysSinceFirstPost,
averageDaysBetweenPosts
} = data);
2022-04-16 10:43:45 +00:00
</script>
<svelte:head>
2022-05-27 19:35:55 +00:00
<!-- Primary Meta Tags -->
<title>Blog | thomaswilson.xyz</title>
2022-08-21 16:18:06 +00:00
<meta name="title" content="Blog | thomaswilson.xyz" />
<meta
name="description"
content="I write about software and how I should have built it, and sometimes other things."
/>
2022-05-27 19:35:55 +00:00
<!-- Open Graph / Facebook -->
2022-08-21 16:18:06 +00:00
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.thomaswilson.xyz/blog" />
<meta property="og:title" content="Blog | thomaswilson.xyz" />
<meta
property="og:description"
content="I write about software and how I should have built it, and sometimes other things."
/>
2022-05-27 19:35:55 +00:00
<!-- Twitter -->
2022-08-21 16:18:06 +00:00
<meta property="twitter:title" content="Blog | thomaswilson.xyz" />
<meta
property="twitter:description"
content="I write about software and how I should have built it, and sometimes other things."
/>
</svelte:head>
2022-04-16 10:43:45 +00:00
<Navbar />
<main class="thomaswilson-container">
<section class="thomaswilson-strapline section">
<h1>Blog</h1>
<p>
I write about software and I how I should have built it, books I've read, and sometimes other
things.
</p>
<p>
2022-08-21 16:18:06 +00:00
It's been <span class="days-since" class:days-since-success={daysSinceLastPublish === 0}>
2022-04-16 10:43:45 +00:00
{daysSinceLastPublish}
</span>
2022-08-21 16:18:06 +00:00
{daysSinceLastPublish === 1 ? 'day' : 'days'} since I last published something. On average I publish
something every {averageDaysBetweenPosts} days ({numberOfPosts} posts in {daysSinceFirstPost} days).
2022-04-16 10:43:45 +00:00
</p>
</section>
<section class="section">
<h2>All Writing</h2>
<ul class="posts">
{#each posts as post, index}
<li class="post" role="article" aria-posinset={index + 1} aria-setsize={posts.length}>
2022-04-16 10:43:45 +00:00
<a href={`/blog/${post.slug}`}>
{#if post.book_review} 📚 {/if}
<div class="post-title">{post.title}</div>
<div class="post-preview">{post.preview}...</div>
2022-04-16 10:43:45 +00:00
<div class="post-date">{intlFormat(new Date(post.date))}</div>
</a>
</li>{/each}
</ul>
</section>
</main>
<style>
.posts {
list-style: none;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: 100%;
2022-04-16 10:43:45 +00:00
gap: var(--spacing-base);
2022-05-06 21:21:44 +00:00
max-width: 100%;
2022-04-16 10:43:45 +00:00
}
.post {
border: 1px solid var(--gray-200);
padding: var(--spacing-md);
transition: 0.2s;
border-radius: 8px;
2022-05-06 21:21:44 +00:00
max-width: 100%;
2022-04-16 10:43:45 +00:00
}
.post:hover {
color: var(--brand-orange);
}
.post a {
color: inherit;
text-decoration: none;
}
.post-title {
text-decoration: underline;
font-family: var(--font-family-title);
font-weight: 600;
padding-bottom: 8px;
}
.post-date {
font-size: 0.9rem;
}
.post-preview {
font-size: 0.9rem;
line-height: 120%;
color: var(--gray-600);
}
.days-since {
color: var(--brand-orange);
font-weight: 300;
border: 1px solid var(--brand-orange);
border-radius: 4px;
padding: 8px;
font-family: monospace;
}
.days-since-success {
color: var(--brand-green);
border: 1px solid var(--brand-green);
animation-name: pulse_green;
animation-duration: 5.2s;
animation-iteration-count: infinite;
background: rgba(54, 130, 127, 0.05);
}
@keyframes pulse_green {
0% {
box-shadow: 0 0 0 0px rgba(54, 130, 127, 1);
}
20%,
100% {
box-shadow: 0 0 0 5px rgba(54, 130, 127, 0);
}
}
2022-04-16 10:43:45 +00:00
</style>