forked from ajaxorg/ace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtmpl.html
More file actions
24 lines (21 loc) · 799 Bytes
/
tmpl.html
File metadata and controls
24 lines (21 loc) · 799 Bytes
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>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>themedump</title>
<meta name="generator" content="Sublime Text 2 http://sublimetext.com">
<meta name="author" content="Christian Swinehart">
<meta name="description" content="">
<link rel="stylesheet" href="css/main.css" type="text/css" charset="utf-8">
<!-- Date: 2014/02/05 19:58:23 -->
</head>
<body>
<div>
{% for row in rows %}
<div class="theme" style="background:{{row.background}}; color:{{row.plain}}; padding:40px 20px">
<span style="width:200px;">{{row.theme}}</span> <span style="color:{{row.err}};">Traceback (most recent call last):</span> <span style="color:{{row.comment}};"># Lorem ipsum dolor module</span>
</div>
{% endfor %}
</div>
</body>
</html>