aboutsummaryrefslogtreecommitdiffstats
path: root/other.md
diff options
context:
space:
mode:
authorla-ninpre <leobrekalini@gmail.com>2020-12-07 02:51:58 +0300
committerla-ninpre <leobrekalini@gmail.com>2020-12-07 02:51:58 +0300
commitc34a1404a2ceb018834ff092fe3c87dd664c515d (patch)
tree6ef5080766e937ad8d5a108e6f06b73d4dbf9a9d /other.md
parentf51ad63fd743e228ed6819a055d0b05ec0d2cab5 (diff)
downloadaaoth.xyz-c34a1404a2ceb018834ff092fe3c87dd664c515d.tar.gz
aaoth.xyz-c34a1404a2ceb018834ff092fe3c87dd664c515d.zip
update post pages and add fossil export post
edit post layout to handle tags, add sort-by-tag page and edit stylesheet according post content updates
Diffstat (limited to 'other.md')
-rw-r--r--other.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/other.md b/other.md
index 74e25f6..1d58065 100644
--- a/other.md
+++ b/other.md
@@ -10,8 +10,17 @@ here will be some misc stuff
<div class="posts">
{% for post in site.posts %}
<div class="post">
+ <h2><a href="{{ post.url}}">{{ post.title }}</a></h2>
+ <small>
+ <p>{{ post.date | date_to_string }}</p>
+ {% if post.tags.size > 0 %}
+ <p>| tags: </p>
+ {% for tag in post.tags %}
+ <a href="/tags/{{ tag }}">{{ tag }}</a>
+ {% endfor %}
+ {% endif %}
+ </small>
{{ post.content }}
- <a href="{{ post.url }}">{{ post.date | date_to_string }}</a>
</div>
{% endfor %}
</div>