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

56 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-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">
<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
<!-- 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]-->
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
2015-04-21 11:46:58 +00:00
<div class="container">
2015-03-04 15:48:22 +00:00
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 -->
2015-02-27 12:25:41 +00:00
<script src="{% static "js/bootstrap.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>