Initial commit

This commit is contained in:
John O'Nolan 2018-12-31 00:56:05 +00:00
parent 92d12e1072
commit 31be8a2291
31 changed files with 7372 additions and 2 deletions

27
error.hbs Normal file
View file

@ -0,0 +1,27 @@
{{!< default}}
<header class="page-head error-head">
<h1 class="page-head-title">{{code}}</h1>
<p class="page-head-description">{{message}}</p>
<a class="error-link" href="{{@blog.url}}">Go to the front page →</a>
</header>
{{#if errorDetails}}
<div class="post-content-body">
<section class="error-stack">
<h3>Theme errors</h3>
<ul class="error-stack-list">
{{#each errorDetails}}
<li>
<em class="error-stack-function">{{{rule}}}</em>
{{#each failures}}
<p><span class="error-stack-file">Ref: {{ref}}</span></p>
<p><span class="error-stack-file">Message: {{message}}</span></p>
{{/each}}
</li>
{{/each}}
</ul>
</section>
</div>
{{/if}}