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

20 lines
646 B
HTML
Raw Normal View History

2015-02-27 08:53:51 +00:00
{% 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">
2015-02-27 12:25:41 +00:00
<title>{% block title %}{% endblock %}</title>
2015-02-27 08:53:51 +00:00
2015-02-27 12:25:41 +00:00
<link rel="icon" href="{% static "favicon.ico" %}">
2015-02-27 08:53:51 +00:00
<link href="{% static "css/bootstrap.min.css" %}" rel="stylesheet">
<link href="{% static "css/dashboard.css" %}" rel="stylesheet">
2015-02-27 12:25:41 +00:00
</head>
<body>
{% block content %}{% endblock %}
<script src="{% static "js/jquery.min.js" %}"></script>
<script src="{% static "js/bootstrap.min.js" %}"></script>
</body>
</html>