lewisdale.dev/src/index.html

42 lines
1.8 KiB
HTML
Raw Normal View History

---
title: Home
layout: base.njk
---
<main class="home wrapper-lg stack-2xl">
<section class="stack-md row">
2023-02-06 10:22:59 +00:00
<h1>Hi, I'm Lewis</h1>
2023-02-25 14:11:27 +00:00
<aside>
I'm raising money for The Christie by taking part in the Manchester - Blackpool 100km.
2023-02-25 21:06:41 +00:00
I'd be grateful for any donations - you can donate via my <a href="https://justgiving.com/fundraising/lewis-dale-bikes" target="_blank">Just Giving page</a>
2023-02-25 14:11:27 +00:00
</aside>
{% image metadata.author.avatar, "My face", "box circle", "300px", [300] %}
2023-02-07 20:21:08 +00:00
<p class="inline-block max-w-[45ch]">
I'm a software engineer who loves building things for the web. I consider myself a generalist, but on a given day I'll probably be working with Typescript, HTML and CSS, and on occasion a touch of .NET. I work for <a href="https://triptease.com" target="_blank" rel="noreferrer">Triptease</a> as a Senior Software Engineer, and on the side I'm learning Rust by building a <a href="/post/creating-a-sinclair-basic-interpreter/">Sinclair BASIC Interpreter</a>.
</p>
2023-02-07 20:21:08 +00:00
<p>
When I'm not working I love cycling, reading fiction (mostly sci-fi and ghost stories), and spending time with my family & our border collie.
</p>
<p>
You can find also find me on <a href="https://social.lewisdale.dev/@lewis" rel="me" target="blank">the Fediverse</a>, follow my reading on <a href="https://bookrastinating.com/user/lewisdaleuk">Bookwyrm</a>, subscribe to my <a href="/feed.xml">RSS feed</a>, or email me at <a href="mailto:hello@lewiswrites.software">hello@lewiswrites.software</a>.
</p>
2023-02-07 20:21:08 +00:00
2023-02-05 19:53:49 +00:00
</section>
2023-02-08 09:29:44 +00:00
<section class="stack-md">
2023-02-05 19:53:49 +00:00
<h2>Recent Posts</h2>
2023-02-08 09:29:44 +00:00
<ul class="stack-2xs">
{% for post in posts | take(3) %}
<li><a href="/post/{{ post.slug }}">{{ post.title.rendered | safe }}</a> <time>{{ post.date | dateDisplay }}</time></li>
2023-02-08 09:29:44 +00:00
{% endfor %}
</ul>
<a href="/blog" class="block">View more posts</a>
2023-02-05 19:53:49 +00:00
</section>
</main>