We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78dd24e commit ae021d1Copy full SHA for ae021d1
2 files changed
blog.html
@@ -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
@@ -3,15 +3,15 @@ layout: page
title: Codeception Blog
---
-# Blog
+<h1>Blog</h1>
{% for post in site.posts %}
-### [{{ post.title }}]({{ post.url }})
+<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
-{{ post.content | truncate: 450 }}
+<p>{{ post.content | truncate: 450 }}</p>
-[Read more]({{ post.url }})
+<a href="{{ post.url }}">Read more</a>
{% endfor %}
0 commit comments