-
Notifications
You must be signed in to change notification settings - Fork 3
/
info.html
executable file
·48 lines (30 loc) · 960 Bytes
/
info.html
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
/**
* -----------------------------------------------------------------------------
* @package smartVISU
* @author Martin Gleiß
* @copyright 2012
* @license GPL [http://www.gnu.de]
* -----------------------------------------------------------------------------
*/
{% extends "base.html" %}
{% block sidebar %}
{% include 'rooms_menu.html' %}
{% endblock %}
{% block content %}
{% import "clock.html" as clock %}
{{ clock.digiclock('clock') }}
<div class="center">
{{ now|date('l') }}, {{ now|date('d.m.Y') }}
</div>
<hr>
{% import "weather.html" as weather %}
{{ weather.current('weather') }}
<hr>
{{ weather.forecastweek('weather_forecast') }}
<hr>
{% import "phone.html" as phone %}
{{ phone.missedlist('phonelist', 'Telefonliste', 3) }}
<hr>
{% import "calendar.html" as calendar %}
{{ calendar.list('calendarlist', 'Kalender', 7) }}
{% endblock %}