-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom-fullwidth.hbs
More file actions
executable file
·65 lines (62 loc) · 2.39 KB
/
custom-fullwidth.hbs
File metadata and controls
executable file
·65 lines (62 loc) · 2.39 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{{!< default}}
{{#post}}
<!-- Start banner Area -->
<section class="banner-area relative" style="background: linear-gradient(0deg, rgba(128, 80, 250, 0.8), rgba(128, 80, 250, 0.8)), url({{feature_image}}) no-repeat center;background-size: cover;">
<div class="overlay overlay-bg"></div>
<div class="container box_1170">
<div class="row d-flex align-items-center justify-content-center">
<div class="about-content col-lg-12">
<h1 class="text-white">
{{title}}
</h1>
<p class="text-white link-nav">
<a href="{{ @site.url }}">{{t "Home"}}</a>
<span class="lnr lnr-arrow-right"></span>
{{ title }}
</p>
</div>
</div>
</div>
</section>
<!-- End banner Area -->
<!-- Blog Area -->
<section class="blog_area section-gap single-post-area">
<div class="container box_1170">
<div class="row">
<div class="col-lg-10 mx-auto">
<div class="main_blog_details">
<div class="user_details">
<div class="float-left">
{{#foreach tags}}
<a href="{{ url }}">{{ name }}</a>
{{/foreach}}
</div>
</div>
<div class="media">
{{#primary_author}}
<div class="d-flex align-items-center author-image">
<img src="{{ profile_image }}" alt="{{ name }}">
</div>
{{/primary_author}}
<div class="media-body">
{{#primary_author}}
<a href="{{ url }}">{{ name }}</a>
{{/primary_author}}
<p>{{ date }}</p>
</div>
</div>
<!-- Blog full content -->
{{ content }}
{{!-- Social share --}}
{{> social-share}}
</div>
{{!-- navigation-sec --}}
{{> navigation-sec}}
{{!-- comment-box --}}
{{> comment-box}}
</div>
</div>
</div>
</section>
<!-- // End Blog Area -->
{{/post}}