forked from lbernau/smartvisuPages
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
executable file
·55 lines (46 loc) · 1.89 KB
/
Copy pathbase.html
File metadata and controls
executable file
·55 lines (46 loc) · 1.89 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
52
53
54
55
/**
* -----------------------------------------------------------------------------
* @package smartVISU
* @author Martin Gleiß
* @copyright 2012
* @license GPL [http://www.gnu.de]
* -----------------------------------------------------------------------------
*/
{% extends "root.html" %}
{% block body %}
<div data-role="page" id="{{ page }}" class="base" data-theme="a">
{% block page %} <!-- custom: start page block -->
<div data-role="header" data-position="fixed" data-tap-toggle="false">
<div class="ui-left">
{% include 'menu.html' %}
</div>
<div class="ui-right">
<a href="javascript:window.location.href=window.location.href" style="text-decoration:none;color:#fff;">
{{ lib.smartvisu() }}
<div class="mini">
<span id="miniclock" class="miniclock" data-widget="clock.miniclock" data-repeat="1i">{{ now|date('H:i') }}</span>, {{ now|date('d.m,') }} v{{ config_version }}</div>
</a>
</div>
<div class="signal hide" onClick="$('.ui-page-active .alert').popup('open');"></div>
<div class="alert" data-role="popup" data-overlay-theme="a">
<div data-role="header" data-theme="c"><h1></h1></div>
<p></p>
<div class="control">
<span class="stamp"></span>
<a onClick="notify.remove();" class="ui-mini" data-icon="check" data-iconpos="top" data-role="button" data-inline="true">OK</a>
<a onClick="$('.alert').popup('close');" class="ui-mini" class="ui-mini" data-icon="delete" data-iconpos="top" data-role="button" data-inline="true">Cancel</a>
</div>
</div>
</div>
<div data-role="content" class="page-bg">
<div class="primary" style="background-image: none;">
{% block content %}{% endblock %}
</div>
<div class="secondary minimum-tablet">
{% block sidebar %}{% endblock %}
</div>
</div>
{% block footer %}{% endblock %}
{% endblock %} <!-- custom: end page block -->
</div>
{% endblock %}