forked from GavickPro/Portfolio-Free-Ghost-Theme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.hbs
executable file
·27 lines (23 loc) · 855 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
24
25
26
27
{{!< default}}
{{! The main content area on the homepage }}
<main role="main" class="{{#if @blog.cover}} custom-bg{{else}} default-bg{{/if}}"{{#if @blog.cover}} style="background-image: url({{@blog.cover}})"{{/if}}>
<div class="main__wrapper">
{{#if @blog.navigation}}
{{navigation}}
{{/if}}
{{> main_slider}}
<div class="whatsnew__div">What's new:</div>
<div id="news"></div>
</div>
</div>
{{!! After all the posts, we have the previous/next pagination links }}
{{pagination}}
<div class="search-wrapper">
<div id="search-box">
<form method="get" action="/search" id="search">
<input id="search-field" name="q" type="text" size="40" placeholder="Search posts..." />
</form>
</div>
<section id="search-results"></section>
</div>
</main>