Skip to content
Snippets Groups Projects
Commit 4e65667d authored by Alvaro Graves's avatar Alvaro Graves
Browse files

Missed default.mode.html

parent 882b5f04
No related branches found
No related tags found
No related merge requests found
SELECT ?s1 ?p1 ?s2 ?p2 WHERE {
{
%u ?s1 ?p1
}UNION{
?s2 ?p2 %u
}
}
<?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 {% for i, ns in base.ns %}xmlns:{{i}}="{{ns}}"
{%endfor%}version="XHTML+RDFa 1.0" xml:lang="en">
<head>
<title>Page about {{base.value.this}}</title>
<link href="{{base.baseUrl}}css/basic.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<h1>Page about <a href='{{base.value.this}}'>{{base.curie.this}}</a></h1>
<br/>
<br/>
<div>
<h2>Information from {{base.curie.this}}</h2>
<table about="{{base.value.this}}">
{% for row in r %}
{% if row.value.s1 != null %}
<tr>
<td><a href='{{row.value.s1}}'>{{row.curie.s1}}</a></td>
{% if row.uri.p1 == 1 %}
<td><a rel='{{row.curie.s1}}' href='{{row.value.p1}}'>{{row.curie.p1}}</a></td>
{% else %}
<td><span property='{{row.curie.s1}}'>{{row.value.p1}}</span></td>
{% endif %}
</tr>
{% endif %}
{% endfor %}
</table>
<br/><br/>
<h2>Information pointing to {{base.curie.this}}</h2>
<table about="{{base.value.this}}">
{% for row in r %}
{% if row.value.s2 != null %}
<tr>
<td><a rev='{{row.curie.p2}}' href='{{row.value.s2}}'>{{row.curie.s2}}</a></td>
<td><a href='{{row.value.p2}}'>{{row.curie.p2}}</a></td>
</tr>
{%endif %}
{% endfor %}
</table>
</div>
</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