diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-23 15:38:56 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-10-23 15:38:56 +0100 |
commit | 55166d955e6a29acf7259a8c9635523ec51855b0 (patch) | |
tree | fb361cd4cf7e3d0a3b7b31a1f90fc6483a6a4af9 /templates | |
parent | 05bb2595cbc6addbf5cdf145545feca5a5838ef9 (diff) | |
download | znc-log-viewer-55166d955e6a29acf7259a8c9635523ec51855b0.tar.xz |
pygmentize irc logs, friendly.css
Diffstat (limited to 'templates')
-rw-r--r-- | templates/log.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/log.html b/templates/log.html new file mode 100644 index 0000000..36d6035 --- /dev/null +++ b/templates/log.html @@ -0,0 +1,11 @@ +<html> +<head> + <link href="{{ url_for('static', filename='friendly.css') }}" rel="stylesheet" type="text/css"> + <link rel="stylesheet" type="text/css" href="https://raw.githubusercontent.com/richleland/pygments-css/master/friendly.css"> +</head> +<body> +{% highlight 'irc' %} +{{ log }} +{% endhighlight %} +</body> +</html> |