forked from secure-systems-lab/secure-systems-lab.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpress.html
47 lines (39 loc) · 1.43 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
---
title: Press
subnav: press
layout: default
---
<link rel="stylesheet" href="{{ site.baseurl }}css/press.css"></link>
<div class="intro">{{ site.data.data.press.intro }}</div>
<ul class="toc" id="tags-toc"></ul>
<div class="presses">
{% for press in site.data.data.press.presses %}
<div class="press-block">
<a name="{{ press.anchor }}"></a>
<span class="title">"{{ press.title }}"</span>
{% if press.projects %}
{% assign pressProjects = '' | split:':' %}
{% for project in press.projects %}
{% capture projectLink %}{% if project.anchor %}{% if project.status.tag == "retired" %}<a href="retired-projects#{{ project.anchor }}">{% else %}<a href="projects#{{ project.anchor }}">{% endif %}{{ project.name }}</a>{% endif %}{% endcapture %}
{% assign pressProjects = pressProjects | push: projectLink %}
{% endfor %}
<span class="project">
(Coverage of {{ pressProjects | array_to_sentence_string }})
</span>
{% endif %}
{% if press.link %}
{% if press.type %}
<div class="link">
<a href="{{ press.link }}">{{ press.type }}</a>
</div>
{% endif %}
{% endif %}
<div class="small-info">
<span class="source"> {{ press.source }}</span>,
<span class="date"> {{ press.date }}</span>.
</div>
</div>
{% endfor %}
</div>
<div id="action-flash" class="fade-out"></div>
<script src="{{ site.baseurl }}js/press_tags.js"></script>