-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (54 loc) · 2.11 KB
/
index.html
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
---
title: ''
layout: default
draft: false
---
<div class="section">
<section class="fixed v80" style='display: block; background-image: url("/assets/images/{{ site.home_bgfile }}");'>
<div class="container container-wide container-header">
<br><br>
<div class="bg-label white-text z-depth-5 radius-border opacity-background title-shadow">
<h1 class="header center">{{ site.title }}</h1>
<div class="row center">
<h5 class="header col s12 light">{{ site.description }}</h5>
</div>
</div>
</div>
</section>
<div class="divider"></div>
<section class="v100">
<br>
<div>
<h2 class="center-align teal-text">Latest Posts <i class="small material-icons">keyboard_arrow_down</i></h2>
</div>
<div class="divider"></div>
<div class="container container-wide">
{% for post in site.posts %}
<ul class="collection with-header">
<li class="collection-header">
<div>
<a class="post-link teal-text post-title" href="{{ post.url }}">{{ post.title }}</a>
<div class="right post-meta secondary-content post-date">{{ post.date | date: "%b %-d, %Y" }}</div>
</div>
</li>
<li class="collection-item"<span class="post-description flow-text truncate">{{ post.description }}</span></li>
</ul>
{% endfor %}
</div>
</section>
<div class="containter containter-wide">
<ul class="pagination center-align teal-text">
{% if paginator.previous_page %}
<li class="waves-effect"><a href=""><i class="material-icons">chevron_left</i></a></li>
{% else %}
<li class="waves-effect"><i class="material-icons">chevron_left</i></li>
{% endif %}
<li class="page_number">Page: {{ paginator.page }} of {{ paginator.total_pages }}</li>
{% if paginator.next_page %}
<li class="waves-effect"><a href="" ><i class="material-icons">chevron_right</i></a></li>
{% else %}
<li class="waves-effect"><i class="material-icons">chevron_right</i></li>
{% endif %}
</ul>
</div>
</div>