1
Fork 0
mirror of https://github.com/Quackster/Havana.git synced 2025-07-04 13:47:45 +00:00
Havana/tools/www-tpl/default-en/homes/editor/search.tpl

16 lines
364 B
Smarty
Raw Normal View History

2022-09-03 15:05:14 +10:00
<ul>
<li>Click on link below to insert it into the document</li>
2024-01-18 07:20:21 +01:00
{% autoescape 'html' %}
2022-09-03 15:05:14 +10:00
{% for kvp in querySearch %}
{% set key = kvp.getKey() %}
{% set value = kvp.getValue() %}
<li><a href="#" class="linktool-result" type="{{ type }}"
value="{{ value }}" title="{{ key }}">{{ key }}</a></li>
{% endfor %}
2024-01-18 07:20:21 +01:00
{% endautoescape %}
2022-09-03 15:05:14 +10:00
</ul>