ycdl/frontends/ycdl_flask/templates/root.html

32 lines
633 B
HTML

<!DOCTYPE html5>
<html>
<head>
{% import "header.html" as header %}
<title>YCDL</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="/static/common.css">
<style>
body, a
{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<a href='/channels'>Manage channels</a>
<a href='/videos/pending?limit=100'>New videos</a>
<a href='/videos/pending?limit=100&orderby=random'>Random videos</a>
</body>
<script type="text/javascript">
</script>
</html>