diff options
Diffstat (limited to 'issue.html.j2')
-rw-r--r-- | issue.html.j2 | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/issue.html.j2 b/issue.html.j2 new file mode 100644 index 0000000..816a656 --- /dev/null +++ b/issue.html.j2 @@ -0,0 +1,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>
\ No newline at end of file |