ycdl/frontends/ycdl_flask/templates/root.html

31 lines
560 B
HTML
Raw Normal View History

2016-11-29 04:16:16 +00:00
<!DOCTYPE html5>
<html>
<head>
{% import "header.html" as header %}
<title>YCDL</title>
<meta charset="UTF-8">
2020-01-07 05:55:01 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
2016-11-29 04:16:16 +00:00
<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>
2016-11-29 04:16:16 +00:00
</body>
<script type="text/javascript">
</script>
</html>