16 lines
381 B
HTML
16 lines
381 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}{{ app_name }}{% endblock %}</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', path='styles.css') }}">
|
|
</head>
|
|
<body>
|
|
<main class="shell">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|
|
|