Spaces:
Sleeping
Sleeping
Create layout.html
Browse files- templates/layout.html +19 -0
templates/layout.html
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Video Subtitle Editor</title>
|
7 |
+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
|
8 |
+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/video-js.min.css" rel="stylesheet">
|
9 |
+
<link href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css" rel="stylesheet">
|
10 |
+
<link href="{{ url_for('static', filename='css/styles.css') }}" rel="stylesheet">
|
11 |
+
</head>
|
12 |
+
<body>
|
13 |
+
{% block content %}{% endblock %}
|
14 |
+
|
15 |
+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
|
16 |
+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/video.min.js"></script>
|
17 |
+
{% block scripts %}{% endblock %}
|
18 |
+
</body>
|
19 |
+
</html>
|