mirror of
https://gitlab.com/hagrid-keyserver/hagrid.git
synced 2023-02-13 20:55:02 -05:00
31 lines
951 B
Handlebars
31 lines
951 B
Handlebars
{{#> layout }}
|
|
{{#with page}}
|
|
|
|
{{#with error}}
|
|
<p><strong>{{ text "Error" }}</strong>: {{ this }}</p>
|
|
{{/with}}
|
|
|
|
<form action="/search" method="GET">
|
|
<div class="search">
|
|
<input type="text" class="searchTerm" id="search" name="q" autofocus placeholder="{{ text "Search by Email Address / Key ID / Fingerprint" }}">
|
|
<button type="submit" class="searchButton button">
|
|
<img src="/assets/search.svg" style="width: 1em; padding-bottom: 4px;"> {{ text "Search" }}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
|
|
<p>
|
|
{{ text "You can also <a href=\"/upload\">upload</a> or <a href=\"/manage\">manage</a> your key." }}
|
|
</p>
|
|
|
|
<p>
|
|
{{ text "Find out more <a href=\"/about\">about this service</a>." }}
|
|
</p>
|
|
|
|
<hr />
|
|
|
|
<p>
|
|
<strong>{{ text "News:" }}</strong> {{ text "<a href=\"/about/news#2019-11-12-celebrating-100k\">Celebrating 100.000 verified addresses! 📈</a> (2019-11-12)" }}
|
|
</p>
|
|
{{/with}}
|
|
{{/layout}}
|