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

182 lines
4.4 KiB
Svelte
Raw Normal View History

2022-04-16 10:43:45 +00:00
<script lang="ts">
import type { PageData } from "./$types.js";
2023-01-30 22:30:38 +00:00
import Navbar from "$lib/components/Navbar.svelte";
import { intlFormat } from "date-fns";
export let data: PageData;
2023-01-30 22:30:38 +00:00
$: ({
posts,
firstPost,
numberOfPosts,
daysSinceLastPublish,
daysSinceFirstPost,
averageDaysBetweenPosts,
numberOfBlogPostsThisYear
2023-01-30 22:30:38 +00:00
} = data);
2022-04-16 10:43:45 +00:00
</script>
<svelte:head>
2023-01-30 22:30:38 +00:00
<!-- Primary Meta Tags -->
<title>Blog | thomaswilson.xyz</title>
<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."
/>
<!-- Open Graph / Facebook -->
<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."
/>
<!-- Twitter -->
<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">
2023-01-30 22:30:38 +00:00
<section class="thomaswilson-strapline section">
<h1>Blog</h1>
<p>
It has been been
<span
2023-01-30 22:30:38 +00:00
class="days-since"
class:days-since-success={daysSinceLastPublish === 0}
>
{daysSinceLastPublish}
</span>
{daysSinceLastPublish === 1 ? "day" : "days"} since I last published something.
</p>
<p>
I write about fun software I've built alone, Real Software™ I built in
teams, books I read, things I am sewing, and other things.
</p>
<p>
I have written {numberOfBlogPostsThisYear}
{numberOfBlogPostsThisYear === 1 ? "piece" : "pieces"} so far this year. On
average I publish something every {averageDaysBetweenPosts} days ({numberOfPosts}
2023-01-30 22:30:38 +00:00
posts in {daysSinceFirstPost} days).
</p>
2023-02-12 10:16:13 +00:00
<a href="/blog/feed">RSS Feed</a>
2023-01-30 22:30:38 +00:00
</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}
>
<a href={`/blog/${post.slug}`}>
<div class="post-title">
{#if post.book_review} 📚 {/if}{post.title}
</div>
<div class="post-preview">
{#if post.preview}
{post.preview}...
{:else}
No preview available ): Click to read the full post.
{/if}
</div>
2023-02-03 07:23:42 +00:00
<div class="post-date">
{intlFormat(
new Date(post.date),
{ day: "2-digit", month: "long", year: "numeric" },
{ locale: "en-GB" }
)}
</div>
2023-01-30 22:30:38 +00:00
</a>
</li>{/each}
</ul>
</section>
2022-04-16 10:43:45 +00:00
</main>
<style>
2023-01-30 22:30:38 +00:00
.posts {
list-style: none;
margin: 0;
padding: 0;
display: grid;
grid-template-columns: 100%;
gap: var(--spacing-base);
max-width: 100%;
}
.post {
border: 1px solid var(--gray-200);
padding: var(--spacing-md);
transition: 0.2s;
border-radius: 8px;
max-width: 100%;
}
.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>