{% extends "base.html.j2" %} {% block page_title %}{{ post.title() }} {{ super() }}{% endblock %} {% block page_title_short %}{{ post.title() }}{% endblock %} {% block content %}

{{ post.title() }}

{{ post.get_prompt("ls tags/") }}
{{ post.get_tags() }}


{{ post.get_prompt("stat -c %.10w content") }}
{{ post.get_publish_time() }}


{{ post.get_cat_prompt("content") }}

{{ post.html|safe }}

{{ post.get_prompt("find other_posts/ -type f -exec head {} +") }}

{% for similar in post.get_similar_posts() %}

{{ similar.title() }}

{{ similar.intro }}

{% endfor %} {% endblock %}