pomodoro/server/templates/error.jsx
Linus Miller 47ce0a2a33 Huge commit
- Update all deps
 - Apply midwest changes
 - Convert all templates to JSX
 - Preact instead of Marko
 - Babel & Eslint
2016-11-10 14:34:44 +01:00

16 lines
379 B
JavaScript

<!doctype html>
<html>
<head>
<title>Newseri - ERROR</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
</head>
<body>
<div id="content">
<h1>Error ${data.error.status}</h1>
<pre>${JSON.stringify(data.error, null, ' ')}</pre>
</div>
</body>
</html>