crimsontome.com/index.njk

21 lines
706 B
Plaintext
Raw Normal View History

2021-10-15 22:30:12 +01:00
---
2022-09-19 03:01:18 +01:00
layout: layouts/home.njk
2022-10-26 23:21:06 +01:00
Title: Welcome!
2021-10-15 22:30:12 +01:00
eleventyNavigation:
key: Home
order: 1
---
2022-10-26 23:21:06 +01:00
<h1> Welcome!</h1>
2022-10-26 22:27:38 +01:00
This is the home of CrimsonTome's blog. Here you can find posts about things I'm interested in, projects I'm doing and the odd tutorial every now and then. I hope you enjoy your stay here and find something here useful 👋
2022-09-04 17:18:35 +01:00
{% set maxPosts = collections.posts.length | min(5) %}
2022-10-26 23:21:06 +01:00
<h2>Latest {% if maxPosts == 1 %}Post{% else %}{{ maxPosts }} Posts{% endif %}</h2>
2021-10-15 22:30:12 +01:00
2022-09-04 17:18:35 +01:00
{% set postslist = collections.posts | head(-5) %}
2021-10-15 22:30:12 +01:00
{% set postslistCounter = collections.posts | length %}
{% include "postslist.njk" %}
<p>More posts can be found in <a href="{{ '/posts/' | url }}">the archive</a>.</p>
2022-02-12 15:38:38 +00:00
<p></p>