forked from rc/aircox
work on admin interface, fix bugs
This commit is contained in:
27
aircox/templates/aircox/controllers/base_site.html
Normal file
27
aircox/templates/aircox/controllers/base_site.html
Normal file
@ -0,0 +1,27 @@
|
||||
{% load static %}
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title>Aircox</title>
|
||||
<link rel="stylesheet" href="{% static 'aircox/css/layout.css' %}" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<sidebar class="sidebar main-sidebar">
|
||||
</sidebar>
|
||||
|
||||
<main>
|
||||
{% block title %}
|
||||
<h1>{{ title|default:"Aircox" }}</h1>
|
||||
{% endblock %}
|
||||
|
||||
<div class="content">
|
||||
{% block content %}
|
||||
|
||||
{% endblock %}
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user