Zap-Ghost-Theme/error.hbs

23 lines
496 B
Handlebars
Raw Permalink Normal View History

2020-05-26 23:43:54 -07:00
{{!< default}}
2020-07-16 10:36:33 -07:00
<header class="gh-header">
<h1>{{statusCode}}</h1>
<p>{{message}}</p>
</header>
2020-05-27 00:06:36 -07:00
2020-07-16 10:36:33 -07:00
<section class="gh-content">
{{#if errorDetails}}
<ul>
{{#foreach errorDetails}}
<li>
<h5>{{{rule}}}</h5>
{{#foreach failures}}
<span><strong>Ref:</strong> {{ref}}</span><br>
<span><strong>Message:</strong> {{message}}</span>
{{/foreach}}
</li>
2020-05-27 00:06:36 -07:00
{{/foreach}}
2020-07-16 10:36:33 -07:00
</ul>
{{/if}}
</section>