24 lines
604 B
HTML
24 lines
604 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 %}
|
|
<footer>
|
|
<a href="https://codeberg.org/simple-web/peertube/src/commit/{{ commit }}">Commit: {{ commit }}</a>
|
|
</footer>
|
|
</body>
|
|
</html>
|