This repository has been archived on 2018-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ProgBlog/app/views/error.stache

16 lines
278 B
Plaintext

<main>
<h1>{{error.status}}</h1>
<h2>{{error.message}}</h2>
{{#if error.error}}
<article>
<table>
<caption>Error Details</caption>
{{#each error as |value key|}}
<tr>
<td>{{key}}</td>
<td>{{value}}</td>
{{/each}}
</table>
</article>
{{/if}}
</main>