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