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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<?php $dir = is_rtl() ? 'rtl' : 'ltr'; $template_exclude_style = apply_filters( 'yaymail_template_exclude_style', [] ); ?> <!DOCTYPE html> <html <?php language_attributes(); ?> dir="<?php echo esc_attr( $dir ); ?>"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"/> <meta name="x-apple-disable-message-reformatting" /> <?php if ( ! in_array( $template->get_name(), $template_exclude_style ) ) : ?> <style> h1{ font-family:inherit;text-shadow:unset;text-align:inherit;} h2,h3{ font-family:inherit;color:inherit;text-align:inherit;} .yaymail-inline-block {display: inline-block;} .yaymail-customizer-email-template-container a {color: <?php echo esc_attr( $template->get_text_link_color() ); ?>}
/** * Media queries are not supported by all email clients, however they do work on modern mobile * Gmail clients and can help us achieve better consistency there. */ /* @media screen and (max-width: 600px) { .yaymail-template-content-container { width: 100% !important; } .yaymail-template-content-container .yaymail-element__content { padding: 8px 15px !important; } .yaymail-template-content-container .yaymail-billing-address-column, .yaymail-template-content-container .yaymail-shipping-address-column { display: block !important; width: 100% !important; } .yaymail-template-content-container .yaymail-shipping-address-column { margin-top: 15px; } .yaymail-template-content-container .yaymail_item_product_title { min-width: 120px; width: 100%; } } */ </style> <?php endif; ?> </head> <body style="background: <?php echo esc_attr( $template->get_background_color() ); ?>" <?php echo is_rtl() ? 'rightmargin' : 'leftmargin'; ?>="0" marginwidth="0" topmargin="0" marginheight="0" offset="0">
|