Skip to content

Commit

Permalink
make link to dataresource relative
Browse files Browse the repository at this point in the history
  • Loading branch information
hagbeck committed Apr 8, 2016
1 parent 83b2c9f commit d642ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/views/index.ftl.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h2>Available datasets</h2>
<dl class="datasets">
<#if datasources??>
<#list datasources?keys as datasourceName>
<dt><a href="/${datasourceName}">${datasources[datasourceName].getTitle() }</a></dt>
<dt><a href="${datasourceName}">${datasources[datasourceName].getTitle() }</a></dt>
<dd>${ datasources[datasourceName].getDescription()!"" }</dd>
</#list>
</#if>
Expand Down

0 comments on commit d642ceb

Please sign in to comment.