Suds/templates/index.html

40 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Suds</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}">
<link rel="icon" type="image/png" href="{{ url_for('static', filename='img/favicon.png') }}">
</head>
<body>
<ul style="display:flex;justify-content:space-between;list-style-type:none;padding-left:0px;align-items:center;">
<li><a href="/"><img style="display:inline" src="{{ url_for('static', filename='img/logo.png') }}" height=100px></a></li>
<li><a href="/latest/">Latest</a></li>
<li><a href="/top/">Top</a></li>
<li><a href="/fact-check/">Fact Checks</a></li>
<li><a href="/collections/">Collections</a></li>
<li><a href="/news/">News</a></li>
<li><a href="/sitemap/">Archives</a></li>
<li><a href="/random/">Random</a></li>
<li>
<form style="align:right" action="/search/" method="get">
<input type=text" name="q" placeholder="Search Suds">
<input type="submit" value="Go">
</form>
</li>
</ul>
<hr>
<center>
<img src="{{ url_for('static', filename='img/logo.png') }}" height=400px>
<form style="align:right" action="/search/" method="get">
<input type=text" name="q" placeholder="Search Suds" size=50 style="font-size:18pt">
<input type="submit" value="Go" style="font-size:18pt">
</form>
</center>
<hr>
<center><p><a href="http://git.vern.cc/cobra/suds">Source code</a></p></center>
</body>
</html>