2015-02-27 08:53:51 +00:00
|
|
|
{% load static %}
|
2020-06-16 08:36:53 +00:00
|
|
|
{% load bootstrap4 %}
|
2015-02-27 08:53:51 +00:00
|
|
|
<!DOCTYPE html>
|
2015-03-04 15:48:22 +00:00
|
|
|
<html lang="en">
|
2015-04-21 11:46:58 +00:00
|
|
|
<head>
|
2015-02-27 08:53:51 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2020-05-21 22:13:39 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
2019-10-28 06:00:47 +00:00
|
|
|
<meta name="description" content="WebVirtCloud panel for manage virtual machine">
|
2015-03-04 15:48:22 +00:00
|
|
|
<meta name="author" content="anatoliy.guskov@gmail.com">
|
2015-02-27 08:53:51 +00:00
|
|
|
|
2015-02-27 12:25:41 +00:00
|
|
|
<title>{% block title %}{% endblock %}</title>
|
2015-02-27 08:53:51 +00:00
|
|
|
|
2015-03-04 15:48:22 +00:00
|
|
|
<!-- Bootstrap Core CSS -->
|
2020-05-19 16:53:54 +00:00
|
|
|
<link href="{% static "css/wvc-main.min.css" %}" rel="stylesheet" id="wvc_css">
|
2015-03-04 15:48:22 +00:00
|
|
|
|
2015-03-05 09:55:15 +00:00
|
|
|
<!-- WebVirtCloud CSS -->
|
|
|
|
<link href="{% static "css/webvirtcloud.css" %}" rel="stylesheet">
|
|
|
|
|
2015-03-06 13:46:59 +00:00
|
|
|
<!-- Aditional CSS -->
|
|
|
|
{% block style %}{% endblock %}
|
2015-03-04 15:48:22 +00:00
|
|
|
|
|
|
|
<!-- Custom Fonts -->
|
2015-05-13 07:32:10 +00:00
|
|
|
<link href="{% static "css/font-awesome.min.css" %}" rel="stylesheet" type="text/css">
|
2015-03-04 15:48:22 +00:00
|
|
|
|
|
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
|
|
|
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
|
|
|
<![endif]-->
|
2018-10-08 13:44:08 +00:00
|
|
|
<link rel="shortcut icon" href="{% static 'favicon.ico' %}">
|
2015-04-21 11:46:58 +00:00
|
|
|
</head>
|
2015-03-04 15:48:22 +00:00
|
|
|
|
2015-04-21 11:46:58 +00:00
|
|
|
<body>
|
2015-03-04 15:48:22 +00:00
|
|
|
|
2015-04-21 11:46:58 +00:00
|
|
|
{% include 'navbar.html' %}
|
2015-03-04 15:48:22 +00:00
|
|
|
|
2020-05-19 16:53:54 +00:00
|
|
|
<div role="main" class="container">
|
2020-06-16 08:36:53 +00:00
|
|
|
{% bootstrap_messages %}
|
2015-04-21 11:46:58 +00:00
|
|
|
{% block content %}{% endblock %}
|
2015-03-04 15:48:22 +00:00
|
|
|
|
2015-04-21 11:46:58 +00:00
|
|
|
</div> <!-- /container -->
|
2015-03-04 15:48:22 +00:00
|
|
|
|
|
|
|
|
2015-04-21 11:46:58 +00:00
|
|
|
<!-- Bootstrap core JavaScript
|
|
|
|
================================================== -->
|
|
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
2015-03-04 15:48:22 +00:00
|
|
|
<!-- jQuery -->
|
|
|
|
<script src="{% static "js/jquery.js" %}"></script>
|
|
|
|
<!-- Bootstrap Core JavaScript -->
|
2020-05-19 16:53:54 +00:00
|
|
|
<script src="{% static "js/bootstrap.bundle.min.js" %}"></script>
|
2016-05-06 08:55:24 +00:00
|
|
|
<!-- JavaScript Cookie -->
|
|
|
|
<script src="{% static "js/js.cookie.js" %}"></script>
|
2015-03-05 14:56:22 +00:00
|
|
|
{% block script %}{% endblock %}
|
2015-04-21 11:46:58 +00:00
|
|
|
</body>
|
2016-05-06 08:55:24 +00:00
|
|
|
</html>
|