-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathProjects.html
More file actions
102 lines (90 loc) · 3.74 KB
/
Projects.html
File metadata and controls
102 lines (90 loc) · 3.74 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
---
rdf_prefix_path: "_data/prefixes.sparql"
layout: base
---
{% include head.html page=page %}
<h2 class="title is-1">{{ page.rdf | rdf_property: "rdfs:label" }}</h2>
{{ page.rdf }}
<div class="content">
<h3 class="title is-3">Funded Projects</h3>
<p>ASKW is currently funded with the following regional, national and European research projects:</p>
{% assign funded_projects = page.rdf | sparql_query: "select distinct ?project { ?project a aksw:FundedProject; rdfs:label ?label ; aksw:status 'active' } order by ?label" %}
</div>
<div class="columns is-multiline">
{% for row in funded_projects %}
<div class="column is-one-third">
{% include project_card.html project=row.project %}
</div>
{% endfor %}
</div>
<div class="content">
<p class="content">AKSW was formerly funded with the following regional, national and European research projects:</p>
{% assign former_funded_projects = page.rdf | sparql_query: "select ?project ?label { ?project a aksw:FundedProject; rdfs:label ?label ; aksw:status 'finished' }" %}
<ul>
{% for project in former_funded_projects %}
<li>
<a href="{{ project.project.render_path | relativize_url }}">{{ project.label }}</a>
</li>
{% endfor %}
</ul>
</div>
<div class="content">
<h3 class="title is-3">Open Source Projects</h3>
<p>AKSW has launched a number of high-impact R&D OpenSource projects.</p>
</div>
{% assign opensource_projects = page.rdf | sparql_query: "select ?project { ?project a aksw:OpenSourceProject . FILTER NOT EXISTS { ?project a <http://aksw.org/schema/AlumniProject> }}" %}
<div class="columns is-multiline">
{% for row in opensource_projects %}
<div class="column is-one-quarter">
{% include project_card.html project=row.project %}
</div>
{% endfor %}
</div>
<div class="content">
<h3 class="title is-3">Community Projects</h3>
<p class="content">AKSW has launched a number of high-impact R&D Community projects.</p>
</div>
{% assign community_projects = page.rdf | sparql_query: "select ?project { ?project a aksw:CommunityProject . FILTER NOT EXISTS { ?project a <http://aksw.org/schema/AlumniProject> }}" %}
<div class="columns is-multiline">
{% for row in community_projects %}
<div class="column is-one-quarter">
{% include project_card.html project=row.project %}
</div>
{% endfor %}
</div>
<div class="content">
<h3 class="title is-3">Dataset Projects</h3>
<p class="content">AKSW is publisher or contributer to the following dataset projects.</p>
</div>
{% assign dataset_projects = page.rdf | sparql_query: "select ?project { ?project a aksw:DatasetProject . FILTER NOT EXISTS { ?project a <http://aksw.org/schema/AlumniProject> }}" %}
<div class="columns is-multiline">
{% for row in dataset_projects %}
<div class="column is-one-third">
{% include project_card.html project=row.project %}
</div>
{% endfor %}
</div>
<div class="content">
<h3 class="title is-3">Incubator Projects</h3>
{% assign incubator_projects = page.rdf | sparql_query: "select ?project ?label { ?project a aksw:IncubatorProject ; rdfs:label ?label . FILTER NOT EXISTS { ?project a <http://aksw.org/schema/AlumniProject> }}" %}
<ul>
{% for project in incubator_projects %}
<li>
<a href="{{ project.project.render_path | relativize_url }}">{{ project.label }}</a>
</li>
{% endfor %}
</ul>
</div>
<div class="content">
<h3 class="title is-3">Project Alumni</h3>
<p class="content">Some projects have reached a stable state, but are currently not actively maintained and further developed.</p>
{% assign alumni_projects = page.rdf | sparql_query: "select ?project ?label { ?project a aksw:AlumniProject ; rdfs:label ?label }" %}
<ul>
{% for project in alumni_projects %}
<li>
<a href="{{ project.project.render_path | relativize_url }}">{{ project.label }}</a>
</li>
{% endfor %}
<ul>
</div>
{% include foot.html page=page %}