forked from ANSR-UofU/ANSR-UofU.github.io
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnews.html
30 lines (28 loc) · 895 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
---
layout: default
title: News
permalink: /news.html
---
<div class="news">
<h3>SPAN Lab News</h3>
{% for newsitem in site.data.news %}
<div class="news mdl-grid">
<div class="mdl-cell mdl-cell--4-col">
{% if newsitem.img_url %}
<a href="{{ newsitem.img_url }}">
{% endif %}
<img src="{{ newsitem.img_src }}" width=225px >
{% if newsitem.img_url %}
</a>
{% endif %}
</div>
<div class="mdl-cell mdl-cell--8-col">
<h4 id="{{ newsitem.tag }}" class="newsitem-name">{{ newsitem.title }}</h4>
<p class="newsitem-description"> {{ newsitem.pubDate }} ---
{{ newsitem.description }}
</p>
</div>
</div>
<hr>
{% endfor %}
</div>