aboutsummaryrefslogtreecommitdiffstats
path: root/other.md
diff options
context:
space:
mode:
authorla-ninpre <leobrekalini@gmail.com>2020-12-07 14:27:05 +0300
committerla-ninpre <leobrekalini@gmail.com>2020-12-07 14:27:05 +0300
commit2e9114bd684688b3ffbf3e3a7d49cbe9d5b3e5bd (patch)
tree7ca25668364d7722f583bb76ffc32aeba1f1c4a6 /other.md
parentf54735882a686c5ccf242695748325e16e545739 (diff)
downloadaaoth.xyz-2e9114bd684688b3ffbf3e3a7d49cbe9d5b3e5bd.tar.gz
aaoth.xyz-2e9114bd684688b3ffbf3e3a7d49cbe9d5b3e5bd.zip
add about page content
Diffstat (limited to 'other.md')
-rw-r--r--other.md20
1 files changed, 7 insertions, 13 deletions
diff --git a/other.md b/other.md
index 1d58065..b4d025e 100644
--- a/other.md
+++ b/other.md
@@ -1,26 +1,20 @@
---
title: other
-permalink: /other/
---
-# other
+miscellaneous posts about different things.
-here will be some misc stuff
+filter by tag: {% for tag in site.tags %}[{{ tag[0] }}](/tags/{{ tag[0] }})
+{% endfor %}
<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>
+ <h2 id="{{ post.title | slugify }}">
+ <a href="{{ post.url}}">{{ post.title }}</a>
+ </h2>
{{ post.content }}
+ <small><p>{{ post.date | date_to_string }}</p></small>
</div>
{% endfor %}
</div>