We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83b2c9f + 2426a7e commit eb87c32Copy full SHA for eb87c32
.gitignore
@@ -1,5 +1,21 @@
1
-.settings
2
-target
+# Eclipse
+.classpath
3
+.project
4
+.settings/
5
+
6
+# Intellij
7
+.idea/
8
+*.iml
9
+*.iws
10
11
+# Mac
12
+.DS_Store
13
14
+# Maven
15
+log/
16
+target/
17
18
ldf-server.json
19
/data/
-/nbproject/
20
+/nbproject/
21
src/main/resources/views/index.ftl.html
@@ -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>
0 commit comments