-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathin_the_news.html
More file actions
39 lines (36 loc) · 1.1 KB
/
Copy pathin_the_news.html
File metadata and controls
39 lines (36 loc) · 1.1 KB
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
37
38
---
layout: default
title: MAYDAY.US - In The News
permalink: /in-the-news/
---
{% capture content %}
<div class="container news-content">
<div class="col-md-12">
<div class="row">
<div class="col-xs-11 col-sm-8">
<div class="row no-gutter-phone">
<h1 class="mayday-headline-smaller"><i class="md-icon md-newspaper-large"></i>Mayday<span class="mayday-headline-smaller-thinner"> In the News</span></h1>
</div>
<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 %}