diff options
| author | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-03-12 07:16:23 +0200 |
|---|---|---|
| committer | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-03-12 07:16:23 +0200 |
| commit | 7076343338ae3439f3c86f01144818abe8c31978 (patch) | |
| tree | 794abb1e6b8f821091fd095341885496b6dad51d /html/processed-views/email/base.html | |
| parent | 47cbb529f5723b246125ae083a193e11481b89ef (diff) | |
| download | classroom-7076343338ae3439f3c86f01144818abe8c31978.tar.gz classroom-7076343338ae3439f3c86f01144818abe8c31978.tar.bz2 classroom-7076343338ae3439f3c86f01144818abe8c31978.zip | |
add container helpers; constuct public directory-tree
Diffstat (limited to 'html/processed-views/email/base.html')
| -rw-r--r-- | html/processed-views/email/base.html | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/html/processed-views/email/base.html b/html/processed-views/email/base.html new file mode 100644 index 0000000..fb56752 --- /dev/null +++ b/html/processed-views/email/base.html @@ -0,0 +1,66 @@ +<!doctype html> +<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" + xmlns:o="urn:schemas-microsoft-com:office:office"> + +<head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="stylesheet" href="../../Content/css/email.css" /> + + <title> + <!-- Title --> + </title> + +</head> + +<body> + <center> + <table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable"> + <tr> + <!--Header--> + </tr> + + <tr> + <td align="center" valign="top" id="templateBody" data-template-container=""> + <!--[if (gte mso 9)|(IE)]> + <table align="center" border="0" cellspacing="0" cellpadding="0" width="700" style="width:700px;"> + <tr> + <td align="center" valign="top" width="700" style="width:700px;"> + <![endif]--> + <table align="center" border="0" cellpadding="0" cellspacing="0" width="100%" + class="templateContainer"> + <tbody> + <tr> + <td valign="top" class="bodyContainer" style="padding:0 30px 32px;text-align: center;"> + <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" + style="min-width:100%;"> + <tbody class="mcnTextBlockOuter"> + + <!--Content--> + + </tbody> + </table> + </td> + </tr> + </tbody> + </table> + <!--[if (gte mso 9)|(IE)]> + </td> + </tr> + </table> + <![endif]--> + </td> + </tr> + + <tr> + <!--Footer--> + </tr> + </table> + </td> + </tr> + </table> + </center> +</body> + +</html>
\ No newline at end of file |
