mirror of
https://github.com/YGGverse/mb.git
synced 2026-03-31 17:15:28 +00:00
17 lines
No EOL
446 B
Text
17 lines
No EOL
446 B
Text
{% extends "layout" %}
|
|
{% block content %}
|
|
<div>
|
|
<a name="{{ post.id }}"></a>
|
|
<p>{{ post.message }}</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 %} |