6
0
Fork 0
This repository has been archived on 2024-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
fediversity_website_archive/themes/nluug/layouts/_default/search.html
2023-06-24 00:43:12 +02:00

27 lines
722 B
HTML

{{ define "main" }}
<h2>Zoeken</h2>
{{ partial "search-form.html" . }}
<div class="container">
<div id="search-results"></div>
<div class="search-loading">Wachten op zoekopdracht of resultaten... (JavaScript is voor deze pagina vereist)</div>
<!-- this template is sucked in by search.js and appended to the search-results div above. So editing here will adjust style -->
<script id="search-result-template" type="text/x-js-template">
<div id="summary-${key}">
<h3><a href="${link}">${title}</a></h3>
<p>${snippet}</p>
<p>
<small>
${ isset tags }Tags: ${tags}<br>${ end }
</small>
</p>
</div>
</script>
</div>
{{ end }}