-
Notifications
You must be signed in to change notification settings - Fork 2
/
custom-post-video.hbs
49 lines (38 loc) · 1.44 KB
/
custom-post-video.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
41
42
43
44
45
46
47
48
49
{{!-- Layout --}}
{{!< default}}
{{#post}}
{{!-- custom Styles For tag <body> --}}
{{#contentFor "special_body_class"}}is-article is-video{{/contentFor}}
<article class="post u-marginBottom40 u-relative">
{{!-- Article Header - paertials/article/article-header.hbs --}}
{{> "article/article-header"}}
{{!-- Video Container --}}
<div class="video-post-format u-marginAuto u-maxWidth1000 u-hide u-marginTop30"></div>
<div class="post-wrap u-maxWidth1000 u-relative u-marginAuto">
{{!-- All Content --}}
<div id="post-body" class="post-body u-container u-maxWidth740 u-relative">{{content}}</div>
</div>
<footer class="post-footer u-container u-maxWidth740">
{{!-- Tags (category) --}}
{{> "article/article-tags"}}
<hr>
<div class="prev-next">
{{#prev_post}}
{{> "story/story-previous-next" storyTitle=(t "Previous article") class="u-marginBottom30"}}
{{/prev_post}}
{{#next_post}}
{{> "story/story-previous-next" storyTitle=(t "Next article") class=""}}
{{/next_post}}
</div>
<hr>
</footer>
</article>
{{/post}}
{{!-- Article related - partials/article/article-related.hbs --}}
{{> "article/article-related"}}
{{#post}}
{{!-- post Commets --}}
{{> "article/article-comments"}}
{{!-- Share Article - Facebook Twitter Whatsapp --}}
{{> "article/article-share-sticky"}}
{{/post}}