
* [VIVO-1312] Linked Data Fragments initial implementation * [VIVO-1312] Use known ontologies in the prefixes config * [VIVO-1312] Simplify SPARQL as when restricted to specific values, they don’t need ordering * [VIVO-1312] Freemarker fixes * [VIVO-1312] Remove blank nodes * [VIVO-1312] Add access control header and standard prefixes for TPF * [VIVO-1312] Render literals in form so that they will work on resubmit * [VIVO-1312] Minor template update * [VIVO-1312] Minor template update
16 lines
No EOL
434 B
HTML
16 lines
No EOL
434 B
HTML
<#-- @license ©2015 Miel Vander Sande - Multimedia Lab / iMinds / Ghent University -->
|
|
<#include "base.ftl.html">
|
|
<#macro contents>
|
|
<h2>Resource not found</h2>
|
|
<p>
|
|
No resource with URL <code>${ url!"" }</code> was found.
|
|
</p>
|
|
|
|
<h3>Available datasets</h3>
|
|
<ul>
|
|
<#list datasources?keys as datasourceName>
|
|
<li><a href="/${datasourceName}">${datasources[datasourceName].getTitle() }</a></li>
|
|
</#list>
|
|
</ul>
|
|
</#macro>
|
|
<@display_page/> |