Added robots file
[ghost-theme-work.git] / page.hbs
1 {{!-- The tag below means - insert everything in this file into the {body} of the default.hbs template --}}
2 {{!< default}}
3
4 {{!-- Everything inside the #post tags pulls data from the post --}}
5 {{#post}}
6
7 <main id="content" class="container content-inner" role="main">
8 <article class="{{post_class}}">
9 <h1 class="post-title">{{title}}</h1>
10 {{#if feature_image}}
11 <div class="content-holder">
12 <a href="{{img_url feature_image}}" class="zoom">
13 <img src="{{img_url feature_image size="m"}}" alt="{{title}}">
14 </a>
15 </div>
16 {{/if}}
17 <section class="post-content content-holder">
18 <div class="editor-content">{{content}}</div>
19 </section>
20 </article>
21 </main>
22
23 {{/post}}