wonderfulfrog.com/src/index.html
2024-02-27 22:26:49 -08:00

30 lines
971 B
HTML

---
layout: "layouts/base"
permalink: /
---
{% from "macros/posts.njk" import list %}
<h1>Ahoj!</h1>
<p>Hello! My name is Devin.</p>
<p>I'm a creative developer who specializes in web and mobile development.</p>
<p>
Welcome to my little slice of the internet. I like to <a href="/posts">write</a> and <a href="/catalogue">catalogue</a> things. There's a lot to explore, and I hope you have fun!
</p>
<p>
If you're interested, I have an <a href="/about">about page</a> all about me!
</p>
<section>
<header class="[ flow ]">
<h2>Favourite posts</h2>
<p>Hand-picked, curated selection of my favourite posts!</p>
</header>
{% set favouritePosts = collections.post | filterFavourites | reverse %}
{{ list(favouritePosts, "MM/DD/YYYY") }}
</section>
<section>
<header>
<h2>Recent posts</h2>
</header>
{% set recentPosts = collections.post | reverse | limit(5) %}
{{ list(recentPosts, "MM/DD/YYYY") }}
</section>