Menu

[r8111]: / trunk / gui / templates / base.html  Maximize  Restore  History

Download this file

52 lines (51 with data), 3.0 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{% load i18n %}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb" dir="ltr">
<head>
<title>{% if hostname %}{{ hostname }} - {% endif %}{{ sw_version }}</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<style type="text/css">html, body.{{ DOJANGO.THEME }} { width: 100%; height: 100%; }</style>
{% include "dojango/include.html" %}
<script type="text/javascript" src="{{ DOJANGO.DOJO_URL }}/freenasdojo.js"></script>
<link rel="stylesheet" href="{{ DOJANGO.DIJIT_URL }}/themes/claro/document.css" />
<link rel="stylesheet" href="{{ DOJANGO.DOJOX_URL }}/form/resources/FileInput.css" />
<link rel="stylesheet" href="{{ DOJANGO.DOJOX_URL }}/form/resources/CheckedMultiSelect.css" />
<link rel="stylesheet" href="{{ DOJANGO.DOJOX_URL }}/grid/resources/claroGrid.css" type="text/css" />
<link rel="stylesheet" href="{{ DOJANGO.DOJOX_URL }}/grid/enhanced/resources/EnhancedGrid.css" type="text/css" />
<link rel="stylesheet" href="{{ STATIC_URL }}css/template.css" type="text/css" />
<link href="{{ STATIC_URL }}favicon.ico" rel="shortcut icon" type="image/x-icon" />
{% block dojango_header_extra %}{% endblock %}
</head>
<body class="{{ DOJANGO.THEME }}">
<div dojoType="dijit.layout.BorderContainer" id="outer" style="width:100%; height:100%" gutters="false">
<div dojoType="dijit.layout.ContentPane" style="height:125px;overflow:hidden;" region="top">
<div id="page-header">
<div>
<a href="/" title="{{ sw_name }}&trade;"><img src="{{ STATIC_URL }}images/ui/freenas-logo.png" alt="{{ sw_name }}&trade;" style="padding-left:10px;"/></a>
</div>
</div>
{% block menubar %}
{% include "menubar.html" %}
{% endblock %}
</div>
{% block dojango_content %}
<div dojoType="dijit.layout.BorderContainer" id="inter" style="width:272px; height:100%" region="left" gutters="false" splitter="true">
<div dojoType="dijit.layout.ContentPane" id="colexpand"
region="top" style="height:20px;">
<a href="javascript:void(0);" onClick="dijit.byId('mytree').expandAll()">{% trans "expand all" %}</a> &nbsp;
<a href="javascript:void(0);" onClick="dijit.byId('mytree').collapseAll()">{% trans "collapse all" %}</a>
</div>
<div dojoType="dijit.layout.ContentPane" id="menupane"
region="center">
</div>
</div>
<div dojoType="dijit.layout.TabContainer" region="center" id="content">
</div>
{% endblock %}
<div dojoType="dijit.layout.ContentPane" style="height:80px;width:100%;padding-bottom:0px;" region="bottom">
{% block footer %}
{% include "footer.html" %}
{% endblock %}
</div>
</div>
</body>
</html>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.