forked from godofredoninja/Mapache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom-post-full-header.hbs
40 lines (32 loc) · 1.24 KB
/
custom-post-full-header.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{{!-- Layout --}}
{{!< default }}
{{!-- Ad --}}
{{> "ad/ad-post-header"}}
<section class="extreme-container u-marginTop30">
{{!-- Article Header - partials/article/article-header.hbs --}}
{{> "article/article-header"}}
{{!-- Article Author - partials/article/article-author.hbs --}}
{{> "article/article-author"}}
</section>
<section class="post extreme-container u-marginBottom40">
<div class="row">
<article class="col-left">
{{#post}}
{{!-- Image post - Default Post --}}
{{#if feature_image}}
<figure class="post-image u-block u-marginAuto u-maxWidth1000">
<img src="{{feature_image}}" class="u-block u-marginAuto" alt="{{title}}" data-action="zoom"/>
</figure>
{{/if}}
{{/post}}
{{!-- Article Content - partials/article/article-body.hbs --}}
{{> "article/article-body"}}
</article>
{{!-- Sidebar - partials/sidebar.hbs --}}
{{> "sidebar"}}
</div>
</section>
{{!-- Comments partials/article/article-related.hbs --}}
{{> "article/article-related"}}
{{!-- Instagram partials/widget/widget-instagram.hbs --}}
{{> "widget/widget-instagram"}}