-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblock_typ1.html
45 lines (33 loc) · 1.07 KB
/
block_typ1.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
/**
* -----------------------------------------------------------------------------
* @package smartVISU
* @author Martin Gleiß
* @copyright 2012 - 2022
* @license GPL [http://www.gnu.de]
* -----------------------------------------------------------------------------
*/
{% extends "block.html" %}
{% block headline %}
<img class="icon" src='{{ icon0 }}audio_playlist.svg' />Block - Typ 1
{% endblock %}
{% block docu %}
<div class="block">
<div class="ui-bar-c ui-li-divider ui-corner-top">Typ 1</div>
<div class="ui-fixed ui-body-a ui-corner-bottom">
<font color="#C9C5C5"><p>Widget-Code</p></font>
</div>
</div>
<br clear="all">
<br><br>
Hier nun der html-Code für den Typ 1:
<br>{% raw %}
<textarea cols="50" rows="3" style="font-family:'Courier New'; font-size:12px">
<div class="block">
<div class="ui-bar-c ui-li-divider ui-corner-top">Typ 1</div>
<div class="ui-fixed ui-body-a ui-corner-bottom">
{{Widget-Code}}
</div>
</div>
{% endraw %}
</textarea>
{% endblock %}