mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
16 lines
332 B
Handlebars
16 lines
332 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<title>{{ name }}</title>
|
|
</head>
|
|
<body>
|
|
<h1>{{ name }}</h1>
|
|
<p>{{ message }}</p>
|
|
{{#if stack}}
|
|
<pre><code>{{ stack }}</code></pre>
|
|
{{/if}}
|
|
</body>
|
|
</html>
|