forked from visdesignlab/visdesignlab.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
31 lines (25 loc) · 749 Bytes
/
news.html
File metadata and controls
31 lines (25 loc) · 749 Bytes
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 | Vis Design Lab
---
<div class="home">
<div class="banner">
</div>
<article class="post-content-main">
<h1>News <span class="left-icon"><a href="{{ site.baseurl }}/feed.xml"><i class="fa fa-rss"></i></a></span></h1>
<ul class="post-list">
{% for post in site.posts %}
<li class="post-list-item">
<div class="right-text">{{ post.date | date: "%-d %b %Y" }}</div>
<span class="post-list-title">
{{ post.title }}
</span>
<span class="post-list-excerpt">
{{ post.excerpt }}
</span>
<div><a class="post-list-link" href="{{ post.url | prepend: site.baseurl }}">More...</a></div>
</li>
{% endfor %}
</ul>
</article>
</div>