My Blog, build with Norgolith
blog.ladas552.me
blog
1{% extends "base.html" %}
2{% block title %}{{ metadata.title | title }}{% endblock title %}
3{% block content %}
4<h1 class="text-center">Posts</h1>
5<section>
6 <div class="flex-container">
7 {% set sorted_posts = posts | sort(attribute="created") | reverse %}
8 {% for post in sorted_posts %}
9 <div class="flex-box animated-card" style="animation-delay: {{ loop.index0 * 100 }}ms;"
10 onclick="location.href='{{ post.permalink }}';">
11 <h3>{{ post.title }}</h3>
12 <div id="description">
13 <description>
14 <span>{{ post.description }}</span>
15 <p>Tags:
16 {% for category in post.categories %}
17 <a href="/categories/{{ category }}">{{ category | capitalize }}</a>
18 {% endfor %}
19 </p>
20 <p><span>Released: {{ post.created | date(format="%Y-%m-%d") }}</span></p>
21 </description>
22 </div>
23 </div>
24 {% endfor %}
25 </div>
26</section>
27{% endblock content %}