1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
<html>
<head>
<title>{{title}}</title>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Source+Code+Pro' rel='stylesheet' type='text/css'>
<style type="text/css">
body {
font-family: 'Source Sans Pro', sans-serif;
}
pre, tt, code, #detail {
font-family: 'Source Code Pro', monospace;
}
h1 {
font-size: 40px;
}
#message {
font-size: 18px;
}
#detail {
font-size: 14px;
}
#console {
white-space: pre;
background-color: #2A2A2A;
color: #4F4;
padding: 12px;
border-radius: 4px;
overflow: auto;
}
</style>
</head>
<body>
<h1>{{title}}</h1>
{{#if message}}
<p id="message">{{message}}</p>
{{/if}}
{{#if detail}}
<p id="detail">{{detail}}</p>
{{/if}}
{{#if detailHTML}}
<p id="detail">{{{detailHTML}}}</p>
{{/if}}
{{#if console}}
<p id="console"><code>{{console}}</code></p>
{{/if}}
</body>
</html>
|