mirror of
https://github.com/YGGverse/mb.git
synced 2026-03-31 17:15:28 +00:00
initial commit
This commit is contained in:
parent
f2b0a1979d
commit
8e7df9ff72
14 changed files with 1011 additions and 0 deletions
17
templates/post.html.tera
Normal file
17
templates/post.html.tera
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{% 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue