forked from dirigible-io/dirigible-io.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.html
35 lines (31 loc) · 766 Bytes
/
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
32
33
34
35
---
layout: blue
---
<ol class="breadcrumb">
<li><a href="/">Home</a></li>
<li class="active">News</li>
</ol>
<div class="container">
<h1>News and Updates</h1>
<div class="post">
<div>
{% for post in site.tags.news %}
{% if post.categories contains 'news' %}
<div>
<p class="post-position">
<div class="img-responsive col-sm-1"><h1><i class="fa fa-newspaper-o fa-fw"></i></h1></div>
<div class="col-sm-11">
<h4>
<a href="{{ post.url }}">{{ post.title }}</a>
</h4>
<sub class="post-info">{{ post.date | date: "%B %-d, %Y"}}</sub><br>
{{ post.excerpt }}
<a href="{{ post.url }}">Read More</a>
</div>
</p>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>