
* refactor: public config delete public config, replace with package.json. Update version to 1.6.0 for this pull request. * fix: searx pagination * refactor: type system for routes * refactor: universal redirection * fix: stackoverflow questions add No handler Found error * feat: stackoverflow users parser
16 lines
508 B
Plaintext
16 lines
508 B
Plaintext
<div class="menu">
|
|
<a class="button secondary" href="/">Home</a>
|
|
<a class="button secondary" href="<%= remoteUrl %>">Original page</a>
|
|
<%
|
|
if (config.search.enabled) {
|
|
%>
|
|
<form class="form-search" action="/redirect" method="get">
|
|
<input type="text" name="q" id="search" placeholder="Search">
|
|
<input class="button" type="submit" value="Go"/>
|
|
<input type="hidden" name="url" value="<%= config.search.searx_url %>/search"/>
|
|
</form>
|
|
<%
|
|
}
|
|
%>
|
|
</div>
|