add bye post
This commit is contained in:
parent
a9cd6559bc
commit
d3aec4ac3b
|
@ -0,0 +1,28 @@
|
|||
+++
|
||||
template = 'custom/blog-post.html'
|
||||
|
||||
title = 'fuck every single one of you'
|
||||
date = '2025-03-01'
|
||||
slug = 'bye'
|
||||
year = 2025
|
||||
month = 3
|
||||
day = 1
|
||||
lang = 'en'
|
||||
|
||||
[extra]
|
||||
author = 'b1ek <me@blek.codes>'
|
||||
+++
|
||||
|
||||
im done
|
||||
|
||||
```
|
||||
-----BEGIN PGP MESSAGE-----
|
||||
|
||||
jA0ECQMIbWKCyQbSgw3/0sATAbRFqZARG4vvKgN2pa5WSWC9coDo7/gA6hgOel8/
|
||||
9kEe4bYM9+KuPGYBw5R5GPrz3e0zWvw/7re7Qnlh0e+e2HyKo5z/nt6oUd+KK72P
|
||||
d+n3/k+rKKkZdA2Lag6Gt3R11e140ONN7IjfXydin6LquOWtIAEaLbDFZdIrVrll
|
||||
g+ALvXuYHprz33hZgNVf3rJ9pJqno33961rhCNmk3D4glZEoIFDnHpJ4DMeRck0s
|
||||
O6qYuDG5Kd157TARRTySjhW7DA8pmBc5ASbI/z9cNU/9rSPmbQ==
|
||||
=+2pj
|
||||
-----END PGP MESSAGE-----
|
||||
```
|
|
@ -11,14 +11,16 @@
|
|||
{{ section.content | safe }}
|
||||
</div>
|
||||
|
||||
{% for year, posts in section.pages | group_by(attribute="year") %}
|
||||
{% for year, posts in section.pages | sort(attribute="year") | reverse() | group_by(attribute="year") %}
|
||||
<h2>Posts for {{ year }}</h2>
|
||||
|
||||
<ul style='list-style:none;text-align:left;padding-left:0'>
|
||||
{% for post in posts | sort(attribute="date") | reverse %}
|
||||
<li>
|
||||
<h3><a href="{{ post.permalink }}">{{ post.title }}</a></h3>
|
||||
<p style='margin-bottom:0'>{{ post.description }}</p>
|
||||
{% if post.description %}
|
||||
<p style='margin-bottom:0'>{{ post.description }}</p>
|
||||
{% endif %}
|
||||
|
||||
<p style='color:gray;font-size:90%'>
|
||||
Date: {{ post.date }} <br/>
|
||||
|
|
Loading…
Reference in New Issue