mirror of
https://github.com/Xevion/v2.xevion.dev.git
synced 2025-12-09 08:09:36 -06:00
- And technically, actually fix them so they're inserted properly. Kinda don't like how they look, but it's good enough for the moment.
45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
---
|
||
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> |
|
||
<em class="build-revision"><a href="{{ site.github.repository_url }}/commit/{{ site.github.build_revision }}">
|
||
#{{ site.github.build_revision | truncate: 7, "" }}
|
||
</a></em>
|
||
</p>
|