Files
v2.xevion.dev/_layouts/posts.html
Xevion 4a2f6c176a Fix Atom feed link, change URL style, be less honest
- And by "be less honest", I mean, don't say that I suck at anything on the front page of my website.
2022-02-27 02:47:24 -06:00

37 lines
906 B
HTML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
layout: default
---
{{ content }}
{% for post in site.posts %}
<div class="post_summary">
<div class="post_date">
<a href="{{ post.url }}">
<time datetime="{{ post.date | date: '%Y-%m-%dT%H:%M:%SZ' }}">
<span class="month">
{{ post.date | date: '%b' }}</span><br>
<span class="date">
{{ post.date | date: '%d' }}</span><br>
<span class="year">
{{ post.date | date: '%Y' }}</span>
</time>
</a>
</div>
<div class="post_combo">
<h2><a href="{{ post._link | default: post.url }}">{{ post.title }}</a></h2><i>
{%- for tag in post.tags -%}
{%- unless page.tag == tag -%}
{{- "" -}}{{- tag -}}
{%- endunless -%}
{%- endfor -%}
</i>
</div>
{{ post.excerpt }}
</div>
{% endfor %}
<hr>
<p style="text-align: center;"><a href="/feed.xml">Atom</a>