1
0
Fork 1
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
878 B

<!DOCTYPE html>
<html lang="en">
<head>
<title>Morsel</title>
<link rel="stylesheet" href="/static/morsel.css" />
<link rel="stylesheet" href="/static/theme.css" />
</head>
<body>
{% include "logo.html" %}
<div class="panel">
<p class="red" style="padding: 16px;">
Are you <b><u>CERTAIN</u></b> you want to delete this post? It will be permanently lost.
</p>
<table width="100%" cellspacing="0px"><tr class="post">
<td width="80px" align="right">
<img src="/avatar/{{name}}" />
</td>
<td>
<h3>{{name}}</h3>
<p>{{post['content']}}</p>
</td>
</tr></table>
<div class="buttons">
<a class="abtn" href="/b/{{bname}}">Nevermind</a>
<a class="abtn red" href="/del/{{bname}}/{{id}}?confirm">Delete</a>
</div>
</div>
</body>
</html>