motherfuckingblog/sites/jekyll-source/_layouts/home.html
Stewart Pidasso c021228161 init
2025-07-07 02:07:58 +00:00

24 lines
549 B
HTML

---
layout: default
---
<div class="home">
{{ content }}
<h2>Recent Posts</h2>
<ul class="post-list">
{% for post in site.posts limit:10 %}
<li>
<h3>
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
</h3>
<p class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</p>
{% if post.description %}
<p>{{ post.description }}</p>
{% endif %}
</li>
{% endfor %}
</ul>
<p><a href="{{ "/archive" | relative_url }}">View all posts</a></p>
</div>