mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 03:54:15 +00:00
21 lines
No EOL
687 B
HTML
21 lines
No EOL
687 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{% block title %}{% endblock %}</title>
|
|
|
|
<link rel="icon" href="{% static "favicon.ico" %}">
|
|
<link href="{% static "css/bootstrap.min.css" %}" rel="stylesheet">
|
|
<link href="{% static "css/dashboard.css" %}" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
<script src="{% static "js/jquery.min.js" %}"></script>
|
|
<script src="{% static "js/bootstrap.min.js" %}"></script>
|
|
{% block javascript %}{% endblock %}
|
|
</body>
|
|
</html> |