Skip to content

Commit ae021d1

Browse files
committed
blog added
1 parent 78dd24e commit ae021d1

2 files changed

Lines changed: 21 additions & 4 deletions

File tree

blog.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
layout: page
3+
title: Codeception Blog
4+
---
5+
6+
# Blog
7+
8+
{% for post in site.posts %}
9+
10+
### [{{ post.title }}]({{ post.url }})
11+
12+
{{ post.content | truncate: 450 }}
13+
14+
15+
[Read more]({{ post.url }})
16+
17+
{% endfor %}

blog.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ layout: page
33
title: Codeception Blog
44
---
55

6-
# Blog
6+
<h1>Blog</h1>
77

88
{% for post in site.posts %}
99

10-
### [{{ post.title }}]({{ post.url }})
10+
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
1111

12-
{{ post.content | truncate: 450 }}
1312

13+
<p>{{ post.content | truncate: 450 }}</p>
1414

15-
[Read more]({{ post.url }})
15+
<a href="{{ post.url }}">Read more</a>
1616

1717
{% endfor %}

0 commit comments

Comments
 (0)