-
Notifications
You must be signed in to change notification settings - Fork 0
/
press.html
36 lines (29 loc) · 952 Bytes
/
press.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
---
layout: normal
title: press
---
<section class="usa-section">
<div class="usa-grid usa-content">
<section class="press usa-section background-gray">
<div class="usa-grid">
<div class="usa-width-one-whole">
<h2>Press</h2>
{% for ni in site.data.press %}
{% assign index_mod = forloop.index0 | modulo:3 %}
{% if index_mod == 0 %}
<div class="usa-grid-full">
{% endif %}
<div class="story usa-width-one-third">
<a href="{{ni.link}}">{{ ni.title }}</a>
<span class="author">{{ ni.author }}</span>
</div>
{% if index_mod == 2 %}
</div>
{% elsif forloop.last %}
</div>
{% endif %}
{% endfor %}
</div>
</section>
</div>
</section>