-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathin_the_news.html
36 lines (34 loc) · 963 Bytes
/
in_the_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: default
title: MAYDAY.US - In The News
permalink: /in-the-news/
---
{% capture content %}
{% include jumbotrons/general-dark.html title="MAYDAY in the News" %}
<div class="container">
<div class="col-md-12">
<div class="row">
<div class="col-xs-11 col-sm-8">
<div class="row">
<div clas="cols-xs-12">
<ul class="list-inline">
{% for article in site.data.press_articles %}
<li id="{{article.link | slugify}}">
<h3><a href="{{article.link}}">{{ article.title }}</a></h3>
{% for quote in article.quotes %}
<blockquote cite="{{article.link}}">
{{ quote | markdownify }}
</blockquote>
{% endfor %}
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
{% include sidebar_news.html %}
</div>
</div>
</div>
{% endcapture %}
{% include sub_layouts/default_layout.html %}