From c34a1404a2ceb018834ff092fe3c87dd664c515d Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Mon, 7 Dec 2020 02:51:58 +0300 Subject: 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 --- other.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'other.md') 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
{% for post in site.posts %}
+

{{ post.title }}

+ +

{{ post.date | date_to_string }}

+ {% if post.tags.size > 0 %} +

| tags:

+ {% for tag in post.tags %} + {{ tag }} + {% endfor %} + {% endif %} +
{{ post.content }} - {{ post.date | date_to_string }}
{% endfor %}
-- cgit v1.2.3