youtube-dl-fe/app/templates/base.html.j2

19 lines
664 B
Django/Jinja

<!doctype html>
<html lang="en-GB">
<head>
<meta charset="UTF-8" />
<meta name="handheldfriendly" content="true" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="YouTube-DL interface, written in Flask" />
<link rel="stylesheet" type="text/css" href="https://assets.pup.cloud/css/chota.min.css" />
<title>YouTube-DL-fe :: {% block title %}{% endblock %}</title>
{% block head_more %}{% endblock %}
</head>
<body>
{% include "navigation-bar.html.j2" %}
{% block page_body %}{% endblock %}
</body>
</html>