Spaces:
Running
Running
File size: 874 Bytes
960cd20 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{% block title %}{% endblock title %} | vits-simple-api</title>
{% include 'includes/styles.html' %}
<link rel="stylesheet" href="{{ url_for('static', filename='css/layouts/navigation.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/layouts/sidebar.css') }}">
{% block extrastyle %}{% endblock extrastyle %}
</head>
<body>
{% block navigation %}
{% include 'includes/navigation.html' %}
{% endblock navigation %}
<div class="flex h-100 flex-grow-1">
{% block sidebar %}
{% include 'includes/sidebar.html' %}
{% endblock sidebar %}
{% block content %}{% endblock %}
</div>
{% include 'includes/scripts.html' %}
{% block extra_js %}{% endblock extra_js %}
</body>
</html> |