forked from theodi/wdaqua
-
Notifications
You must be signed in to change notification settings - Fork 10
/
our-work.html
88 lines (85 loc) · 2.6 KB
/
our-work.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
layout: default
redirect_from:
- /software/
- /deliverables/
- /publications/
---
<div class="container">
<div class="page-header">
<h1>Publications</h1>
</div>
<div class="row">
{% for publication in site.data.publications %}
{% assign pub = publication[1] %}
<div class="publication col-lg-4 col-md-6">
<p>{{ pub.citation }}</p>
<p>
{% if pub.url %}
<a href="{{pub.url}}">URL</a>
{% endif %}
{% if pub.pdf %}
<a href="{{pub.pdf}}">PDF</a>
{% endif %}
{% if pub.poster %}
(<a href="{{pub.poster}}">poster</a>)
{% endif %}
</p>
</div>
{% endfor %}
</div>
</div>
<div class="contrast">
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>Dissemination</h2>
<p>WDAqua <a href="http://www.wdaqua.eu/assets/dissemination/WDAqua_poster.pdf" target="_blank">poster</a></p>
<p>WDAqua <a href="http://www.wdaqua.eu/assets/dissemination/WDAqua_Flyer.pdf" target="_blank">flyer</a></p>
</div>
<div class="col-md-4">
<h2>System demo</h2>
<p>WDAqua-core0 is a first implementation of a fully working QA system. You can try it out at <a href="http://www.wdaqua.eu/qa" target="_blank">www.wdaqua.eu/qa</a>.</p>
</div>
<div class="col-md-4">
<h2>Software</h2>
<p>Qanary is a methodology that allows to construct and share resources to build QA systems. It is the reference architecture for the WDAqua project. More information on <a title="Qanary" href="https://github.com/WDAqua/Qanary">Github</a>.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="page-header">
<h1>Deliverables</h1>
</div>
<table class="table table-hover">
<thead>
<tr>
<th>Number</th>
<th>Title</th>
<th><abbr title="Workpackage">WP</abbr></th>
<th>Type</th>
<th>Dissemination level</th>
<th>Due date</th>
</tr>
</thead>
<tbody>
{% for deliverable in site.data.deliverables %}
<tr>
<td>{{ deliverable.number }}</td>
<td>
{% if deliverable.link %}
<a href="{{deliverable.link}}">{{ deliverable.title }}</a>
{% else %}
{{ deliverable.title }}
{% endif %}
</td>
<td>{{ deliverable.wp }}</td>
<td>{{ deliverable.type }}</td>
<td>{{ deliverable.dissemination-level }}</td>
<td>{{ deliverable.due-date }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>