-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathblog.html
40 lines (34 loc) · 887 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
34
35
36
37
38
39
40
---
layout: sub-page
title: Blog
className: blog
---
<section>
<div class="section-background">
<div class="section-wrapper"></div>
</div>
<div class="section-wrapper">
<div class="recent-articles">
<div class="container-post">
{% for post in site.posts %}
{% if forloop.index !=1 %}
<div class="blog-post">
<a href={{ post.url }}>
<div class="post-title">{{ post.title }}</div>
</a>
<!-- <div class="post-date">{{ post.date | date: '%B %d, %Y' }}</div> -->
<div class="post-description">{{ post.description }}</div>
<a
href={{ post.url }}
title="Register Now"
class="btn"
>
Read more
</a>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</section>