-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusages.html
39 lines (35 loc) · 1.13 KB
/
usages.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
---
layout: default
title: They use WfCommons
permalink: /usages
---
<!-- Main -->
<div id="main">
{% assign publications = site.data.usages.publications %}
{% assign num_pubs = publications | size %}
<article class="post">
<header>
<div class="title">
<h2>They use WfCommons</h2>
<p>Projects and publications that use WfCommons</p>
</div>
<div class="meta">
<div style="line-height: 1.5em">
<span style="font-size: 2.5em" class="wftraces">{{ num_pubs }}</span>
<p style="color: #666; line-height: 1.3em; margin-top: 0"><strong>publications</strong>
</p>
</div>
</div>
</header>
<h3>Publications that have used WfCommons</h3>
<ol reversed>
{% for p in publications %}
<li>
{{ p.authors }},
<a href="{{ p.link }}" target="_blank">{{ p.title }}</a>,
<i>{{ p.book }}</i>, {{ p.year }}.
</li>
{% endfor %}
</ol>
</article>
</div>