MarginaliaSearch/marginalia_nu/src/main/resources/templates/edge/browse-results.hdb

50 lines
1.1 KiB
Plaintext
Raw Normal View History

2022-05-19 15:45:26 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Marginalia Search - {{query}}</title>
<link rel="stylesheet" href="/style-new.css" />
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="Marginalia">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex" />
</head>
<body>
{{>edge/parts/search-header}}
<article>
{{>edge/parts/search-form}}
<section class="cards">
{{#if focusDomain}}
<section class="card semantic">
<h2>Similar Domains</h2>
<p class="description">
Showing domains similar to <tt>{{focusDomain}}</tt>.
</p>
</section>
{{/if}}
{{#each results}}{{>edge/browse-result}}{{/each}}
{{#unless focusDomain}}
<section class="card semantic">
<h2>Random Domains</h2>
<p class="description">
This list of domains is random. <b>Refresh</b> to get
new domains, or click <b>Similar Domains</b> to
take the helm.
</p>
</section>
{{/unless}}
</section>
</article>
{{>edge/parts/search-footer}}
</body>