blob: 816a656880c435a1e825aed76bc750814e1ee3d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!doctype html>
<html lang="en">
<body>
<header>
<h1>{{ "%s #%d" % (title, number) }}</h1>
<table>
<tr>
<th>URL:</th>
<th><a href="{{ html_url }}">{{ html_url }}<a></th>
</tr>
<tr>
<th>Created:</th>
<th>{{ created_at }}</th>
</tr>
<tr>
<th>Created by:</th>
<th><a href="https://github.com/{{ user['login'] }}">{{ user["login"] }}</a></th>
</tr>
</table>
<hr />
</header>
{{ gfm_html|safe }}
</body>
</html>
|