SimpleerTube/templates/base.html
fattalion 20a2d43b74 Create base template and use it everywhere
Also added a nice and shiny search field in the template.
2021-01-19 18:13:08 +03:00

22 lines
469 B
HTML

<!doctype html>
<html>
<head>
{% block head %}
<title>{% block full_title %}{% block title %}{% endblock %} - SimpleerTube{% endblock %}</title>
{% endblock %}
</head>
<body>
<form action="/{{ domain }}/search" method="POST">
<input type="text" name="query" id="query" value="{{ search_term }}"/>
<button type="submit">Search</button>
</form>
<br>
<br>
{% block content %}{% endblock %}
</body>
</html>