summaryrefslogtreecommitdiff
path: root/skins/stone/widgets/message.tmpl
blob: 921ed644649bc6e569cb4517a79cf49daff9091f (plain)
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
<!-- MessageTemplate -->
<?% IF ! global.bodyinc.defined;global.bodyinc = 1 %?>
<body class="hilfsframed">
<div>
<?% END %?>

<?% trimmed = data FILTER trim %?>
<?% IF data.size > 1 || trimmed != "" %?>
<table class="editortable" summary="">
    <tr><td class="editorhead"><div class="editorhead">&nbsp;</div><?% INCLUDE shutter.inc %?></td></tr>
    <tr>  
        <td class="editortext" align="left">
        <?% IF data.size <= 0 %?>
            <?% data %?>
        <?% ELSE %?>
            <table summary="" width="100%">
            <?% FOREACH zeile IN data %?>
                <tr<?% " class='two'" IF loop.count mod 2 == 0 %?>>
                    <td><?% zeile %?></td>
                </tr>
             <?% END %?>
            </table>
        <?% END %?>
        </td>
    </tr>
    <tr><td class="editorbottom"></td></tr>
</table>
<?% END %?>