mirror of
https://github.com/fergalmoran/robotopro.git
synced 2025-12-22 09:18:53 +00:00
72 lines
2.5 KiB
HTML
Executable File
72 lines
2.5 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% load static %}
|
|
<meta charset="utf-8"/>
|
|
<title>{% block head_title %}RobotoPro{% endblock %}</title>
|
|
<link href="{% static "css/bootstrap.min.css" %}" rel="stylesheet"/>
|
|
<link href="{% static "css/bootstrap-responsive.min.css" %}" rel="stylesheet"/>
|
|
<link href="{% static "css/font-awesome.min.css" %}" rel="stylesheet"/>
|
|
<!--[if IE 7]>
|
|
<link rel="stylesheet" href="{% static "css/font-awesome-ie7.min.css" %}"/>
|
|
<![endif]-->
|
|
|
|
<link rel="stylesheet" href="{% static "css/datepicker.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/ace-fonts.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/ace.min.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/ace-responsive.min.css" %}"/>
|
|
<link rel="stylesheet" href="{% static "css/ace-skins.min.css" %}"/>
|
|
<!--[if lte IE 8]>
|
|
<link rel="stylesheet" href="{% static "css/ace-ie.min.css" %}" />
|
|
<![endif]-->
|
|
|
|
{% block header_styles %}
|
|
{% endblock %}
|
|
|
|
<script src="{% static "js/uncompressed/ace-extra.js" %}"></script>
|
|
{% block header_scripts %}
|
|
{% endblock %}
|
|
|
|
</head>
|
|
<body class="skin-2">
|
|
{% include 'navbar.html' %}
|
|
<div class="main-container container-fluid">
|
|
<a class="menu-toggler" id="menu-toggler" href="#">
|
|
<span class="menu-text"></span>
|
|
</a>
|
|
{% include 'sidebar.html' %}
|
|
<div class="main-content">
|
|
<div class="page-content">
|
|
<div class="page-header position-relative">
|
|
<h1>
|
|
{% block heading %}Dashboard{% endblock %}
|
|
<small>
|
|
<i class="icon-double-angle-right"></i>
|
|
{% block sub_heading %}overview & stats{% endblock %}
|
|
</small>
|
|
</h1>
|
|
</div>
|
|
<!--/.page-header-->
|
|
<div class="row-fluid">
|
|
<div class="span12">
|
|
<div class="space-6"></div>
|
|
<div class="row-fluid">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% include 'settings_container.html' %}
|
|
</div>
|
|
</div>
|
|
<a href="#" id="btn-scroll-up" class="btn-scroll-up btn btn-small btn-inverse">
|
|
<i class="icon-double-angle-up icon-only bigger-110"></i>
|
|
</a>
|
|
{% include 'footer_scripts.html' %}
|
|
|
|
{% block footer_scripts %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|