forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 868 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (26 loc) · 868 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
25
26
27
28
---
layout: default
---
<div class="home">
{% if site.theme_settings.header_text %}
<div class="call-out"
style="background-image: url('{{ site.baseurl }}/{{ site.theme_settings.header_text_feature_image }}')">
{{ site.theme_settings.header_text }}
</div>
{% endif %}
<article>
<div class="posts">
<header style="background-image: url('/')">
<h1 class="title" style="text-align:center;font-style:normal;margin-bottom:6%">blog</h1>
</header>
<table style="width:100%">
{% for post in site.posts %}
<tr>
<td style="width:25%;border:none;"><i class="icon-clock"></i> {{ post.date | date: "%b %d, %Y" }}</td>
<td style="border:none;"><a class="post-link plain" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></td>
</tr>
{% endfor %}
</table>
</div>
</article>
</div>