-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.html
31 lines (31 loc) · 1.3 KB
/
news.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
---
layout: default
title: News
---
<section id="news-list">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="post-list">
{% for post in site.posts %}
<div class="post-list-item">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 style="text-align:center"><a href="{{ post.url | relative_url }}">{{ post.title }}</a> <small>Posted on <time datetime="{{ post.date | date:"%b %-d, %Y" }}" pubdate>{{ post.date | date: "%b %-d, %Y" }}</time></small>
</div>
<div class="col-md-12">
<p class="excerpt">{{ post.excerpt }}</p>
</div>
<div class="col-md-12">
<p><a href="{{ post.url | relative_url }}" class="btn btn-primary">Read More</a></p>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</section>