Added robots file
[ghost-theme-work.git] / error.hbs
1 {{!< default}}
2 <div id="content" class="container">
3 <div class="error-title">
4 <h1>Error 404</h1>
5 <p>Page not found</p>
6 {{#if stack}}
7 <section class="error-stack">
8 <h3>Stack Trace</h3>
9 <p><strong>{{message}}</strong></p>
10 <ul class="error-stack-list">
11 {{#foreach stack as |item|}}
12 <li>
13 at
14 {{#if item.function}}<em class="error-stack-function">{{item.function}}</em>{{/if}}
15 <span class="error-stack-file">({{item.at}})</span>
16 </li>
17 {{/foreach}}
18 </ul>
19 </section>
20 {{/if}}
21 </div>
22 </div>