Skip to content

Commit

Permalink
old group team
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBin authored Nov 29, 2023
1 parent 9d74ed5 commit b3fb3e4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Team.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,22 @@
} order by ASC(?familyName)
{% endcapture %}

{% capture oldgroup_query %}
select distinct ?person where
{
{
?group foaf:member ?person .
?group aiiso:part_of ?resourceUri .
} UNION {
?resourceUri foaf:member ?person
}
?person a foaf:Person , <http://aksw.org/GrownUp> , <http://aksw.org/Alumni> .
OPTIONAL {
?person foaf:familyName ?familyName
}
} order by ASC(?familyName)
{% endcapture %}

{% capture students_query %}
select distinct ?person ?name where
{
Expand All @@ -53,6 +69,17 @@ <h4 class="title is-4">The following individuals belong to AKSW</h4>
{% endfor %}
</div>
</section>
{% assign oldgroup = "<http://aksw.org/Groups/AKSW>" | sparql_query: oldgroup_query %}
<section class="section">
<h4 class="title is-4">The following individuals grew up at AKSW</h4>
<div class="columns is-multiline">
{% for member in oldgroup %}
<div class="column is-one-third">
{% include person_card.html person=member.person %}
</div>
{% endfor %}
</div>
</section>
{% assign students = "<http://aksw.org/Groups/AKSW>" | sparql_query: students_query %}
<section class="section">
<h4 class="title is-4">The following Students work with us </h4>
Expand Down

0 comments on commit b3fb3e4

Please sign in to comment.