forked from Team3128/team3128.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
22 lines (21 loc) · 872 Bytes
/
blog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: single_page
title: Blog
permalink: /blog/
---
<table style="background: grey; margin: -22px" cellspacing="15px">
{% for post in site.posts %}
<tr width="100%">
<td onClick="javascript:location.href='{{ post.url | prepend: site.baseurl }}'" class="indexpost hover_animate" width="33%">
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }} • {{ post.author }}</span>
<span class="post-top">
<h4>{{ post.title }}</h4>
</span>
<span class="post-excerpt">
{{ post.content | strip_html | truncatewords: 50 }}
</span>
</td>
</tr>
{% endfor %}
</table>
<!--<a href="'{{ "/feed.xml" | prepend: site.baseurl }}'"><div style="margin-right: 0px; margin-left:0px; margin-top:39px; margin-bottom: -3px;" class="button hover_animate" align="center">Subscribe via RSS</div></a>-->