view kallithea/templates/email/header.html @ 8652:d379e2c39bba

templates: rename email_templates to email The '_templates' suffix is not really needed as we are already in a 'templates' dir. This is more in line with the other templates, and the new 'ini' template directory.
author Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
date Thu, 08 Oct 2020 14:52:00 +0200
parents kallithea/templates/email_templates/header.html@10ee27bae2ff
children
line wrap: on
line source

<%page args="title,link" />\
\
##<!-- header -->
<table bgcolor="${color_background_grey}" width="100%" cellpadding="0" cellspacing="0"
       style="border-bottom:1px solid ${color_border}">
    <tr>
        <td height="20px" style="height:20px" colspan="3"></td>
    </tr>
    <tr>
        <td width="30px" style="width:30px"></td>
        <td style="${sans_style};font-size:19px;line-height:24px">
        %if link is not None:
            <a style="text-decoration:none;${emph_style}" href="${link}"
               target="_blank">${title}</a>
        %else:
            <span style="${emph_style}">${title}</span>
        %endif
        </td>
        <td width="30px" style="width:30px"></td>
    </tr>
    <tr>
        <td height="20px" style="height:20px" colspan="3"></td>
    </tr>
</table>
##<!-- /header -->