forked from grmmph/GhostScroll
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy patherror.hbs
More file actions
23 lines (20 loc) · 920 Bytes
/
error.hbs
File metadata and controls
23 lines (20 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
{{! The big featured header on the homepage, with the site logo and description }}
<header id="site-head" {{#if @blog.cover}}style="background-image: url({{@blog.cover}})"{{/if}}>
<div class="vertical">
<div id="site-head-content" class="inner">
<a id="blog-logo" href="{{@blog.url}}">
{{#if @blog.logo}}
<img src="{{@blog.logo}}" alt="Back to home" />
{{else}}
{{@blog.title}}
{{/if}}
</a>
<h1 class="blog-title">{{code}} — {{message}}</h1>
<h2 class="blog-description"><i class="fa fa-hand-peace-o"></i> you found a {{code}} page<h2>
</div>
</div>
</header>
<main id="content" class="content" role="main">
</main>