-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 779 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: default
title: Home
---
<h1>Latest Posts</h1>
<ul>
{% for post in site.posts %}
<a href="{{ site.baseurl }}{{ post.url }}"><div class="blog-link">
<div class="side img"><img class="blog-img" src="{{ site.baseurl }}{{ post.excerpt_image }}" alt="{{ post.excerpt_image_alt }}"/></div><div class="side text">
<h2 class="blog-link-title"><i>{{ post.title }}</i></h2>
<p class="blog-link-body">{{ post.custom_excerpt }}</p>
<div class="blog-bottom">
<div class="date">
{{ post.date | date_to_string }}
</div>
<div class="more">
>>>read more
</div>
</div>
</div>
</div></a>
{% endfor %}
</ul>