lyadmin/templates/layout.html

14 lines
244 B
HTML
Raw Normal View History

2020-11-21 19:40:19 -05:00
<!DOCTYPE html>
<head>
<title>userreq</title>
<link rel="stylesheet" href="{{url_for('static',filename='main.css')}}">
</head>
2020-11-21 20:13:47 -05:00
<h1>铃音</h1>
2020-11-21 19:40:19 -05:00
<body>
<div class="container">
{%block content%}
{%endblock%}
</div>
</body>
</html>