19 lines
505 B
HTML
19 lines
505 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ bulletin.subject }} - PacketServer</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', path='/css/style.css') }}">
|
|
</head>
|
|
<body>
|
|
<h1>{{ bulletin.subject }}</h1>
|
|
<p class="meta">By {{ bulletin.author }} on {{ bulletin.created_at[:10] }}</p>
|
|
|
|
<pre>{{ bulletin.body }}</pre>
|
|
|
|
<p>
|
|
<a href="/bulletins">← All Bulletins</a> |
|
|
<a href="/dashboard">Dashboard</a>
|
|
</p>
|
|
</body>
|
|
</html> |