-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1 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
---
layout: default
---
<div class="home">
{% if site.theme.header_text %}
<div class="call-out"
style="background-image: url('{{ site.baseurl }}/{{ site.theme.header_text_feature_image }}')">
{{ site.theme.header_text }}
</div>
{% endif %}
<div class="posts">
{% for post in site.categories.main limit:10 %}
<div class="post-teaser">
<header>
<h1>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}
</a>
</h1>
<p class="meta">
{{ post.date | date: "%B %-d, %Y" }}
</p>
</header>
<div class="excerpt">
{{ post.excerpt }}
<a class="button" href="{{ post.url | prepend: site.baseurl }}">
{{ site.theme.str_continue_reading }}
</a>
</div>
</div>
{% endfor %}
</div>
<div class="pagination">
<a href="/blog/" class="button" >
<i class="fa fa-align-right"></i>
{{ site.theme.str_all }}
</a>
</div>
</div>