-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
33 lines (32 loc) · 963 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
23
24
25
26
27
28
29
30
31
32
33
---
layout: blog
title: LiLong's Blogs on the Web
---
<!--
<h2><a href='http://feeds2.feedburner.com/LilongsBlog' class='float-right'><img src='/images/subscribe-icon.gif' alt='Subscribe'/></a>Latest Blog Post (<a href='blog.html'>More</a>)</h2>
-->
{% for post in site.posts %}
<div class='home_box' id='home_left'>
<article class='post'>
<header>
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
</header>
<div class='body'>
{{ post.content | strip_html | truncate:350 }}
</div>
<footer>
<a class="btn btn-default read-more" rel="nofollow" href="{{ post.url }}" title="{{ post.title }}">阅读全文</a>
</footer>
</article>
{% endfor %}
</div>
</div>
<div class='home_box' id='home_right'>
<h2>Open Source</h2>
<div id='github-projects'>
<div class='repo'>
<h3><a href="https://github.com/li-long/li-long.github.io.git">Blog</a></h3>
<span class="desc">The source code for this website.</span>
</div>
</div>
</div>