forked from godofredoninja/Mapache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.hbs
23 lines (18 loc) · 882 Bytes
/
index.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{!-- Add layout --}}
{{!< default}}
{{^is "paged"}}
<section id="cover" class="cover u-flex-wrap" style="min-height:100vh">
{{#if @blog.cover_image}}<div class="cover-background lazy" data-original="{{@blog.cover_image}}"></div>{{/if}}
<div class="cover-wrap u-flex-aling-center">
{{!-- Blog name --}}
<h1 id="title-home" class="cover-title animated bounceInDown">{{@blog.title}}</h1>
{{!-- Blog description --}}
<p class="cover-description animated bounceIn">{{@blog.description}}</p>
{{!-- Btn suscribe --}}
<a id="btn-home" href="{{@blog.url}}/subscribe" class="btn-subscribe-home animated bounceIn">SUBSCRIBE NOW</a>
</div>
<a href="#ScrollBody" class="scrolltop mouse u-h-b-lg"><span class="scroll"></span></a>
</section>
{{/is}}
{{! The tag below includes the post loop - partials/loop.hbs }}
{{> "loop"}}