diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2022-08-27 20:40:20 +0100 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2022-08-27 20:40:20 +0100 |
commit | f5cc222114d69b5beba26bd8e0837521867c70ea (patch) | |
tree | 6ac3f997d48bcb2ea0e170461bea6bac0d8546b1 /issue.html.j2 | |
parent | 37bbe88fc60523593835781edc89a3395c4e0a42 (diff) | |
download | GithubIssuesPrinter-f5cc222114d69b5beba26bd8e0837521867c70ea.tar.gz GithubIssuesPrinter-f5cc222114d69b5beba26bd8e0837521867c70ea.zip |
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 |