mirror of
https://github.com/peridotbuild/mothership.git
synced 2024-11-23 14:01:27 +00:00
33 lines
806 B
Django/Jinja
33 lines
806 B
Django/Jinja
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>{% block title %}Peridot Mothership{% endblock %}</title>
|
|
|
|
<link rel="stylesheet" href="/pv2-ui/pv2.min.css">
|
|
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
|
|
<body class="font-sans antialiased bg-slate-100 min-h-screen w-screen h-full">
|
|
<div class="pv2-top-bar">
|
|
<div id="logo">
|
|
<a href="/">Peridot Mothership</a>
|
|
</div>
|
|
<div id="search">
|
|
<form action="/search">
|
|
<input type="text" name="q" placeholder="Search..." />
|
|
</form>
|
|
</div>
|
|
<div id="links"></div>
|
|
</div>
|
|
<div class="pv2-content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
|
|
</html> |