1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 20:14:15 +00:00
webvirtcloud/templates/base.html

69 lines
1.8 KiB
HTML
Raw Normal View History

2015-02-27 08:53:51 +00:00
{% load static %}
<!DOCTYPE html>
2015-03-04 15:48:22 +00:00
<html lang="en">
2015-02-27 08:53:51 +00:00
<head>
2015-03-04 15:48:22 +00:00
2015-02-27 08:53:51 +00:00
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
2015-03-04 15:48:22 +00:00
<meta name="description" content="WebVirtMgr panel for manage virtual machine">
<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 -->
2015-02-27 08:53:51 +00:00
<link href="{% static "css/bootstrap.min.css" %}" rel="stylesheet">
2015-03-04 15:48:22 +00:00
2015-03-05 09:55:15 +00:00
<!-- SB admin CSS -->
2015-03-04 15:48:22 +00:00
<link href="{% static "css/sb-admin.css" %}" rel="stylesheet">
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 -->
<link href="{% static "font-awesome/css/font-awesome.min.css" %}" rel="stylesheet" type="text/css">
<!-- 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]-->
2015-02-27 12:25:41 +00:00
</head>
2015-03-04 15:48:22 +00:00
2015-02-27 12:25:41 +00:00
<body>
2015-03-04 15:48:22 +00:00
<div id="wrapper">
{% include 'navbar.html' %}
<div id="page-wrapper">
<div class="container-fluid">
{% block content %}{% endblock %}
</div>
<!-- /.container-fluid -->
</div>
<!-- /#page-wrapper -->
</div>
<!-- /#wrapper -->
<!-- jQuery -->
<script src="{% static "js/jquery.js" %}"></script>
<!-- Bootstrap Core JavaScript -->
2015-02-27 12:25:41 +00:00
<script src="{% static "js/bootstrap.min.js" %}"></script>
2015-03-04 15:48:22 +00:00
2015-03-05 14:56:22 +00:00
{% block script %}{% endblock %}
2015-02-27 12:25:41 +00:00
</body>
2015-03-04 15:48:22 +00:00
2015-02-27 12:25:41 +00:00
</html>