lewisdale.dev/src/index.html

43 lines
2.2 KiB
HTML
Raw Normal View History

---
title: Home
layout: base.njk
---
<main class="home wrapper-lg stack-2xl">
<section class="stack-md row h-card">
2023-11-29 07:55:14 +00:00
<h1><a href="https://{{ metadata.site.domain }}" rel="me" class="u-url">Hi, I'm <span class="p-given-name">Lewis</span></a></h1>
2023-02-25 14:11:27 +00:00
2024-03-02 09:44:48 +00:00
<aside class="callout stack-2xs">
<p>I'm raising money for Cyclists Fighting Cancer this summer.</p>
<p>
Check out the <a href="/events/2024">events calendar</a>, or if you would like to donate you can do so on the <a href="https://justgiving.co.uk/page/lewis-dale-bikes" rel="noopener noreferrer" target="_blank">Just Giving page</a>
2024-03-02 09:44:48 +00:00
</p>
</aside>
2023-11-29 07:55:14 +00:00
<p class="inline-block max-w-[45ch] p-note">
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="noopener noreferrer" class="p-org">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>
{% image metadata.author.avatar, "My face", "box circle u-photo", "300px", [300] %}
2023-11-29 07:55:14 +00:00
<p class="p-note">
2024-03-14 07:45:03 +00:00
When I'm not working I love cycling, reading fiction (mostly sci-fi and ghost stories), and spending time with my family &amp; our border collie.
</p>
2023-11-29 07:55:14 +00:00
<p class="p-note">
You can find also find me on <a href="https://social.lol/@lewis" rel="me noopener noreferrer" target="_blank">the Fediverse</a>, follow my reading on <a href="https://bookrastinating.com/user/lewisdaleuk" target="_blank" rel="me noopener noreferrer">Bookwyrm</a>, subscribe to my <a href="/feed/">RSS feed</a>, or email me at <a href="mailto:hello@lewiswrites.software" class="u-email">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-08-18 09:29:44 +00:00
<ul class="stack-2xs" role='list'>
2023-12-30 16:05:52 +00:00
{% for post in collections.posts | reverse | take(3) %}
2024-03-14 07:54:20 +00:00
<li><a href="{{ post.url }}">{{ post.data.title | safe }}</a> <time datetime="{{ post.date | dateToRfc3339 }}">{{ 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>