Skip to content
Snippets Groups Projects
Commit 46649188 authored by alangrafu's avatar alangrafu Committed by GIT_AUTHOR_NAME
Browse files

Merge branch 'master' into hotfixes

parents f4ab280d e175c6d7
No related branches found
No related tags found
No related merge requests found
......@@ -9,15 +9,10 @@
</head>
<body>
<h1>Classes available</h1>
{%include "header.inc"%}
<ul>
{% if r.resource.value != null %}
<!-- Only one class available -->
<li><a href='{{base.baseUrl}}special/instances/{{ r.resource.curie }}'>{{r.resource.curie}}</a></li>
{% endif %}
{% for row in r %}
{% if row.resource.value %}
<li><a href='{{base.baseUrl}}special/instances/{{ row.resource.curie }}'>{{row.resource.curie}}</a></li>
{% endif %}
{% endfor %}
</ul>
</body>
......
......@@ -9,6 +9,7 @@
</head>
<body>
<h1>Instances of {{base.args.arg0}}</h1>
{%include "header.inc"%}
<ul>
{% for row in r %}
<li><a href='{{ row.resource.value }}'>{{row.resource.curie}}</a></li>
......
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" {% for i, ns in base.ns %}xmlns:{{i}}="{{ns}}"
{%endfor%}version="XHTML+RDFa 1.0" xml:lang="en">
<head>
<title>Graphs available in the triple store</title>
<link href="{{base.baseUrl}}/lodspeakr/css/basic.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<h1>Graphs available</h1>
{%include "header.inc"%}
<ul>
{% for row in r %}
<li>{{row.g.curie}}</li>
{% endfor %}
</ul>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment