gil.ink/src/_layouts/home.njk

28 lines
700 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">
2025-05-16 19:21:47 -04:00
<main class="home__main">{{ content | safe }}</main>
<aside class="home__social">
{% include 'snippets/socials.njk' %}
</aside>
<aside class="home__updates">
<h2>Updates</h2>
{% include 'snippets/updates.njk' %}
</aside>
<aside class="home__badges">
{% include 'snippets/badges.njk' %}
</aside>
2025-05-12 02:31:17 -04:00
</div>
2025-05-16 21:16:21 -04:00
<!-- <footer>
2025-05-16 19:21:47 -04:00
<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>
2025-05-16 21:16:21 -04:00
</footer> -->