This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·65 lines (58 loc) · 2.61 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
61
62
63
64
65
---
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="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>
<h6 class="header col s12 dark"><i>by <a href="http://github.com/{{ site.author_github }}" target="_blank" alt="Author: {{ site.author }}">{{ site.author }}</a></i><br><br></h6>
</div>
</div>
</div>
</section>
<div class="divider"></div>
<section class="v100">
<br>
<div>
<h2 class="center-align retrium-orange-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 retrium-orange-text post-title" href="{{ post.url | prepend: site.github.url }}">{{ post.title }}</a>
<div class="right post-meta retrium-orange-text post-date">{{ post.date | date: "%-d of %b %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 retrium-orange-text">
{% if paginator.previous_page %}
<li class="waves-effect"><a href="{{ paginator.previous_page_path | site.github.url}}"><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="{{ paginator.next_page_path | site.github.url }}" ><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 class="container">
<p class="rss-subscribe right-align">subscribe <a class="retrium-orange-text" href="{{ site.github.url }}/feed.xml">via RSS</a></p>
</div>
</div>