2016-12-23 21:55:08 +00:00
|
|
|
<#-- @license ©2015 Miel Vander Sande - Multimedia Lab / iMinds / Ghent University -->
|
|
|
|
<#include "base.ftl.html">
|
|
|
|
<#macro contents>
|
|
|
|
<div class="index">
|
|
|
|
<h2>Available datasets</h2>
|
|
|
|
<p>Browse the following datasets as <a href="http://linkeddatafragments.org/in-depth/#tpf">Triple Pattern Fragments</a>:</p>
|
|
|
|
<dl class="datasets">
|
|
|
|
<#if datasources??>
|
|
|
|
<#list datasources?keys as datasourceName>
|
|
|
|
<dt><a href="${homePath}/${datasourceName}">${datasources[datasourceName].getTitle() }</a></dt>
|
|
|
|
<dd>${ datasources[datasourceName].getDescription()!"" }</dd>
|
|
|
|
</#list>
|
|
|
|
</#if>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
|
2017-01-31 21:09:49 +00:00
|
|
|
<#include "client.ftl.html">
|
2016-12-23 21:55:08 +00:00
|
|
|
</#macro>
|
|
|
|
|
2019-04-25 14:51:38 -07:00
|
|
|
<@display_page/>
|