repo.or.cz
/
jekyll-now.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Avatar height fix
[jekyll-now.git]
/
index.html
blob
dfcf58b64584c484ae7000310488e98d9d658383
1
---
2
layout: default
3
---
4
5
<div
class
=
"posts"
>
6
{% for post in site.posts %}
7
<article
class
=
"post"
>
8
9
<h1><a
href
=
"{{ post.url }}"
>
{{ post.title }}
</a></h1>
10
11
<div
class
=
"entry"
>
12
{{ post.content | truncatewords:
40
}}
13
</div>
14
15
<a
href
=
"{{ post.url }}"
class
=
"read-more"
>
Read More
</a>
16
</article>
17
{% endfor %}
18
</div>