-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 788 Bytes
/
index.html
File metadata and controls
30 lines (30 loc) · 788 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
29
30
---
layout: layout
title: blog.lesspainful.com
---
<div class="content">
<style>
.post .p_content {font-size:14px;}
</style>
<div class="blog_posts">
{% for post in site.posts %}
<div class="post">
<div class="p_head">
<div class="p_thumb" style="background-image:url('/img/{{ post.author_img }}')"></div>
<div class="p_title">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
</div>
<div class="p_info">
Posted by {{ post.author }} - {{ post.date | date: "%B %e, %Y" }}
</div>
</div>
<div class="p_content lightbg">
<div class="arrow_up_light"></div>
<div class="p_body">
{{ post.content }}
</div>
</div>
</div>
{% endfor %}
</div>
</div>