mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
Fixes {% partial %} node for mail templates Trim body var for text emails Style code nodes
18 lines
423 B
HTML
18 lines
423 B
HTML
name = "Panel"
|
|
==
|
|
{{ body|trim }}
|
|
==
|
|
<table class="panel" width="100%" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td class="panel-content">
|
|
<table width="100%" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td class="panel-item">
|
|
{{ body|md_safe }}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|