gil.ink/src/_layouts/home.njk

29 lines
754 B
Plaintext
Raw Normal View History

2025-04-30 02:44:05 -04:00
---
layout: base.njk
---
2025-05-12 02:31:17 -04:00
<div class="page--home">
<main class="home__main">{{ content | safe }}</main>
<aside class="home__social">
2025-04-30 02:44:05 -04:00
{% include 'snippets/socials.njk' %}
</aside>
2025-05-12 02:31:17 -04:00
<aside class="home__updates">
2025-04-30 02:44:05 -04:00
<h2>Updates</h2>
{% include 'snippets/updates.njk' %}
</aside>
2025-05-12 02:31:17 -04:00
<aside class="home__badges">
2025-05-01 14:24:16 -04:00
{% include 'snippets/badges.njk' %}
</aside>
2025-05-12 02:31:17 -04:00
</div>
<footer>
<p>
<strong>Created</strong>
<time datetime="{{ page.date | formatDate }}">{{ page.date | formatDate }}</time>
{% if lastmod %}•
<strong>Last modified</strong>
<time datetime="{{ lastmod | formatDate }}">{{ lastmod | formatDate }}</time>
{% endif %}
</p>
</footer>