
* fix: interface style improvements and components in ejs templates * fix: improvement of improvements * Redesign: kind of MD3 * Working url/search switch * formatting * Add switch animation, adjust sizes, adjust btn colors, rename bg2 to outline * Format --------- Co-authored-by: DarkCat09 <gh@dc09.ru>
15 lines
418 B
Plaintext
15 lines
418 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="/search" method="get">
|
|
<input type="text" name="q" id="search" placeholder="Search">
|
|
<input class="button" type="submit" value="Go"/>
|
|
</form>
|
|
<%
|
|
}
|
|
%>
|
|
</div>
|