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
1.1 KiB
30 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Post by {{ post['author'] }}</title>
|
|
<link rel="stylesheet" href="/static/morsel.css" />
|
|
<link rel="stylesheet" href="/static/theme.css" />
|
|
</head>
|
|
<body>
|
|
<div class="feed_panel panel">
|
|
<center><a href="/" class="mods"><img src="/static/logo.png" alt="Morsel logo"></a></center>
|
|
<hr/>
|
|
<p>You're looking at a post on...</p>
|
|
<h2><a style="color: white;" href="/b/{{bname}}">{{ bname }}</a></h2>
|
|
<p class="extra-room">...on <span class="mods">Morsel</span>. <a href="/reg" class="mods">Sign up today!</a></p>
|
|
<hr/>
|
|
<table width="100%" cellspacing="0px">
|
|
<tr class="post">
|
|
<td width="80px" align="right">
|
|
<img src="/avatar/{{ post['author'] }}" /><br/>
|
|
</td>
|
|
<td>
|
|
<h3><a href="/u/{{ post['author'] }}">{{ post['author'] }}</a> <a href="/post/{{bname}}/{{post['id']}}">says...</a></h3>
|
|
<p>{{ post['content'] | safe }}</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|