mb/templates/post.html.tera
2025-08-21 14:41:18 +03:00

17 lines
No EOL
474 B
Text

{% extends "layout" %}
{% block content %}
<div>
<a name="{{ post.id }}"></a>
<p>{{ post.message | url | linebreaksbr | safe }}</p>
<div>
<ul>
<li><a href="{{ post.href.post }}" title="Created">{{ post.time }}</a></li>
</ul>
{% if post.href.delete %}
<div>
<a rel="nofollow" href="{{ post.href.delete }}" title="Delete">Delete</a>
</div>
{% endif %}
</div>
</div>
{% endblock content %}