forked from godofredoninja/simply
-
Notifications
You must be signed in to change notification settings - Fork 0
/
godo-podcast.hbs
26 lines (22 loc) · 906 Bytes
/
godo-podcast.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
{{!-- Layout --}}
{{!< default}}
{{!-- Class for <body> --}}
{{#contentFor "special_body_class"}}is-podcast has-cover is-transparent{{/contentFor}}
{{#post}}
<section class="spc-header u-relative u-overflowHidden u-bgDark">
{{!-- Featured Image - partials/helper/helper-image-cover.hbs --}}
{{#if feature_image}}{{> "helper/helper-image-cover"}}{{/if}}
<div class="spc-h-inner u-textColorWhite u-maxWidth1040 u-container u-relative zindex3 u-textAlignCenter">
<h1 class="spc-h-t animated bounceIn">{{title}}</h1>
{{content}}
</div>
</section>
{{/post}}
<div class="u-container">
<div class="feed-entry-content u-maxWidth1000 u-marginAuto u-paddingTop30">
<div class="feed-entry-wrap row">
{{!-- Sidebar - partials/story/story-podcast.hbs --}}
{{#foreach posts}} {{>"story/story-podcast"}} {{/foreach}}
</div>
</div>
</div>