123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- {% load static settings %}
- <!DOCTYPE html>
- <html lang="en" 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 name="viewport" content="width=device-width">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="x-apple-disable-message-reformatting">
- <meta name="format-detection" content="telephone=no,address=no,email=no,date=no,url=no">
- <meta name="color-scheme" content="light dark">
- <meta name="supported-color-schemes" content="light dark">
- <title>
- {% block title_text %}{% endblock %}
- </title>
-
- <style>
-
- :root {
- color-scheme: light dark;
- supported-color-schemes: light dark;
- }
-
-
- html,
- body {
- margin: 0 auto !important;
- padding: 0 !important;
- height: 100% !important;
- width: 100% !important;
- }
-
- * {
- -ms-text-size-adjust: 100%;
- -webkit-text-size-adjust: 100%;
- }
-
- div[style*="margin: 16px 0"] {
- margin: 0 !important;
- }
-
- #MessageViewBody, #MessageWebViewDiv{
- width: 100% !important;
- }
-
- table,
- td {
- mso-table-lspace: 0pt !important;
- mso-table-rspace: 0pt !important;
- }
-
- table {
- border-spacing: 0 !important;
- border-collapse: collapse !important;
- table-layout: fixed !important;
- margin: 0 auto !important;
- }
-
- img {
- -ms-interpolation-mode:bicubic;
- }
-
- a {
- text-decoration: none;
- }
-
- a[x-apple-data-detectors],
- .unstyle-auto-detected-links a,
- .aBn {
- border-bottom: 0 !important;
- cursor: default !important;
- color: inherit !important;
- text-decoration: none !important;
- font-size: inherit !important;
- font-family: inherit !important;
- font-weight: inherit !important;
- line-height: inherit !important;
- }
-
- .a6S {
- display: none !important;
- opacity: 0.01 !important;
- }
-
- .im {
- color: inherit !important;
- }
-
- img.g-img + div {
- display: none !important;
- }
-
-
-
- @media only screen and (min-device-width: 320px) and (max-device-width: 374px) {
- u ~ div .email-container {
- min-width: 320px !important;
- }
- }
-
- @media only screen and (min-device-width: 375px) and (max-device-width: 413px) {
- u ~ div .email-container {
- min-width: 375px !important;
- }
- }
-
- @media only screen and (min-device-width: 414px) {
- u ~ div .email-container {
- min-width: 414px !important;
- }
- }
- </style>
-
-
- <style>
- @media screen and (max-width: 600px) {
- /* What it does: Adjust typography on small screens to improve readability */
- .email-container {
- p, li{
- font-size: 17px !important;
- }
- }
- }
- </style>
-
- </head>
- <body width="100%" style="margin: 0; padding: 0 !important; mso-line-height-rule: exactly; background-color: #fafafa;" class="email-bg">
- <center role="article" aria-roledescription="email" lang="en" style="width: 100%; background-color: #fafafa;" class="email-bg">
-
-
- <div style="max-width: 600px; margin: 0 auto;" class="email-container">
-
-
- <table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin: auto;">
-
- <tr>
- <td style="padding: 20px 0 12px 0; text-align: left">
- <img src="{% get_domain %}{% static 'images/logo.png' %}" width="200" height="50" alt="alt_text" border="0" style="height: auto; background: #fafafa;">
- </td>
- </tr>
-
- <tr>
- <td style="background-color: #fefefe;" class="darkmode-bg">
- <table role="presentation" cellspacing="0" cellpadding="0" width="100%">
- {% block content %}{% endblock %}
- </table>
- </td>
- </tr>
- </table>
-
-
- </div>
-
- </center>
- </body>
- </html>
|