-
-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathcustom-post-full-header.hbs
More file actions
32 lines (25 loc) · 962 Bytes
/
custom-post-full-header.hbs
File metadata and controls
32 lines (25 loc) · 962 Bytes
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
{{!-- Layout --}}
{{!< default }}
{{#contentFor "mapache_class_body"}}is-article{{/contentFor}}
{{#post}}
<section class="post container mx-auto my-10">
<div class="col s12 flex-none w-full">
{{!-- Article Header - partials/article/article-header.hbs --}}
{{> "article/article-header"}}
{{!-- Article Author - partials/components/author-meta.hbs --}}
{{> "components/author-meta"}}
</div>
<div class="flex flex-col lg:flex-row">
<div class="min-w-0 flex-auto">
{{!-- Featured Image - partials/article/article-media.hbs --}}
{{> "article/article-media"}}
{{!-- Article Content - partials/article/article-body.hbs --}}
{{> "article/article-body"}}
</div>
{{/post}}
{{!-- Sidebar - partials/sidebar.hbs --}}
{{> "sidebar"}}
</div>
</section>
{{!-- Comments partials/article/article-related.hbs --}}
{{> "article/article-related"}}