mediasort/templates/page.html

32 lines
634 B
HTML
Raw Normal View History

2019-08-17 10:25:11 -07:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Media Sort</title>
<style>
html, body {
font-family: arial, sans-serif;
font-size: 12px;
}
#page {
margin: 0px auto;
2019-08-17 12:50:46 -07:00
padding: 0px 15px;
max-width: 1000px;
2019-08-17 10:25:11 -07:00
}
td {
padding: 3px 5px;
}
td {
border-bottom: 1px solid #666;
}
</style>
</head>
<body>
<div id="page">
2019-08-17 12:50:46 -07:00
<div class="toolbar">
{% block toolbar %}{% endblock %}
</div>
2019-08-17 10:25:11 -07:00
{% block body %}{% endblock %}
</div>
</body>
</html>