Skip to content

Commit

Permalink
Fix #24.
Browse files Browse the repository at this point in the history
  • Loading branch information
white-gecko committed Apr 5, 2019
1 parent 177942f commit 5bc3b2c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
5 changes: 4 additions & 1 deletion _layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
<h1 class="display-4">{{ rootResource | rdf_property: "rdfs:label", page.language }}</h1>
{{ rootResource | rdf_property: "rdfs:comment", page.language | markdownify }}

<p><a href="{{ rootResource | rdf_property: "site:registrationPage" }}" role="button" class="btn btn-success">{{ "site:registrationPage" | rdf_property: "rdfs:label", page.language }}</a></p>
<p>
<a href="{{ rootResource | rdf_property: "site:registrationPage" }}" role="button" class="btn btn-success">{{ "site:registrationPage" | rdf_property: "rdfs:label", page.language }}</a>
{% include reifiedLabel.html subject=rootResource predicate="site:registrationPage" language=page.language %}
</p>

<dl>
<dt>{{ "schema:startDate" | rdf_property: "rdfs:label", page.language }}</dt>
Expand Down
8 changes: 7 additions & 1 deletion graph.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
schema:endDate "2019-05-22"^^xsd:date ;
schema:location lswt:Location ;
site:rooms [ rdf:_1 lswt:kosmos ; rdf:_2 lswt:tutorialraum ; rdf:_3 lswt:hackathonraum ; rdf:_4 lswt:dachterrasse ] ;
site:registrationPage <https://pretix.eu/infai/lswt2019/> ;
site:registrationPage site:registrationPage ;
schema:organizer lswt:Team ;
schema:partner lswt:Partner ;
schema:subEvent lswt:begruessung,
Expand All @@ -48,6 +48,12 @@ schema:startDate rdfs:label "Datum"@de, "Date"@en .
schema:location rdfs:label "Ort"@de, "Place"@en .
site:registrationPage rdfs:label "Anmeldung"@de, "Registration"@en .

lswt:RegistrationComment
rdf:subject <> ;
rdf:predicate site:registrationPage ;
rdf:object site:registrationPage ;
rdfs:label "Der Ticketverkauf endet am 19.5."@de, "Registration is open untill May 19th."@en .

lswt:Location a schema:PostalAddress ;
rdfs:label "Veranstaltungsort"@de, "Venue"@en ;
rdfs:comment "Das INNSIDE by Meliá Leipzig liegt im Herzen der Stadt gegenüber der Thomaskirche."@de, "The INNSIDE by Meliá Leipzig is at the heard of the city just opposite to famous Thomaskirche."@en ;
Expand Down

0 comments on commit 5bc3b2c

Please sign in to comment.