-
-
Notifications
You must be signed in to change notification settings - Fork 210
/
godo-podcast.hbs
27 lines (21 loc) · 993 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
27
{{!-- Layout --}}
{{!< default}}
{{!-- Class for <body> --}}
{{#contentFor "mapache_class_body"}}is-podcast has-cover is-head-transparent bg-gray-90{{/contentFor}}
{{#post}}
<div class="spc-header godo-hero-cover flex items-center justify-center relative min-h-lg py-24 px-4 bg-dark overflow-hidden">
<article class="spc-h-inner max-w-4xl relative flex flex-col text-center z-3 pt-16 text-white text-2xl md:text-3xl">
<h1 class="spc-h-t text-white text-5xl md:text-6xl">{{title}}</h1>
{{content}}
</article>
{{!-- Featured Media - partials/components/media-cover.hbs --}}
{{> "components/media-cover" background=feature_image has_gradient=true alt_title=title}}
</div>
{{/post}}
<div class="container mx-auto py-12">
<div class="js-post-feed grid gap-10 lg:grid-cols-2">
{{!-- Sidebar - partials/story/story-podcast.hbs --}}
{{#foreach posts visibility="all"}}{{>"story/story-podcast"}}{{/foreach}}
</div>
{{pagination}}
</div>