summaryrefslogtreecommitdiff
path: root/templates/html/htmlobjlink.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/html/htmlobjlink.tpl')
-rw-r--r--templates/html/htmlobjlink.tpl10
1 files changed, 0 insertions, 10 deletions
diff --git a/templates/html/htmlobjlink.tpl b/templates/html/htmlobjlink.tpl
deleted file mode 100644
index 5d3c3f4..0000000
--- a/templates/html/htmlobjlink.tpl
+++ /dev/null
@@ -1,10 +0,0 @@
-{# inputs: obj (with .isLinkable .isReference .anchor .fileName .externalReference), text, config, page.relPath #}
-{% if obj.isLinkable %}
-{% if obj.isReference %}
-<a class="elRef" href="{{ obj.externalReference }}{{ obj.fileName }}{{ config.HTML_FILE_EXTENSION }}{% if obj.anchor %}#{{ obj.anchor }}{% endif %}">{{ text }}</a>
-{% else %}
-<a class="el" href="{{ page.relPath }}{{ obj.fileName }}{{ config.HTML_FILE_EXTENSION }}{% if obj.anchor %}#{{ obj.anchor }}{% endif %}">{{ text }}</a>
-{% endif %}
-{% else %}
-<b>{{ text }}</b>
-{% endif %}