MarginaliaSearch/code/services-application/search-service/resources/templates/search/browse-results.hdb

35 lines
957 B
Plaintext
Raw Normal View History

2022-05-19 15:45:26 +00:00
<!DOCTYPE html>
<html lang="en-US">
2022-05-19 15:45:26 +00:00
<head>
<meta charset="UTF-8">
<title>Marginalia Search - {{query}}</title>
<link rel="stylesheet" href="/serp.css" />
2022-05-19 15:45:26 +00:00
<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" />
2023-03-22 14:11:22 +00:00
2022-05-19 15:45:26 +00:00
</head>
<body>
2023-03-04 12:19:01 +00:00
{{>search/parts/search-header}}
{{>search/parts/search-form}}
<span id="content-start"></span>
<div class="infobox">
2022-05-19 15:45:26 +00:00
{{#if focusDomain}}
Showing domains similar to <tt>{{focusDomain}}</tt>.
2022-05-19 15:45:26 +00:00
{{/if}}
{{#unless focusDomain}}
This list of domains is random. <a href="https://search.marginalia.nu/explore/random">Refresh</a> to get
new domains, or click <b>Similar Domains</b> to
take the helm.
2022-05-19 15:45:26 +00:00
{{/unless}}
</div>
<section class="cards">
{{#each results}}{{>search/browse-result}}{{/each}}
2022-05-19 15:45:26 +00:00
</section>
2023-03-04 12:19:01 +00:00
{{>search/parts/search-footer}}
2022-05-19 15:45:26 +00:00
</body>