email-templates
5 months ago
ui-blocks
9 months ago
clean-template.php
5 years ago
generate-password.php
5 years ago
message.php
5 months ago
template-preview.php
1 year ago
template-preview.php
54 lines
| 1 | <?php |
| 2 | error_reporting(0); |
| 3 | ?><!DOCTYPE html> |
| 4 | <html <?php language_attributes(); ?>> |
| 5 | <head> |
| 6 | <meta http-equiv="Content-Type" |
| 7 | content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>"/> |
| 8 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 9 | <?php wp_head(); ?> |
| 10 | <style> |
| 11 | body{ |
| 12 | font-family: var(--wpdm-font); |
| 13 | background: #ffffff url("<?php echo get_the_post_thumbnail_url(); ?>") no-repeat; |
| 14 | background-size: cover; |
| 15 | } |
| 16 | .outer { |
| 17 | display: table; |
| 18 | position: absolute; |
| 19 | top: 0; |
| 20 | left: 0; |
| 21 | height: 100%; |
| 22 | width: 100%; |
| 23 | } |
| 24 | |
| 25 | .middle { |
| 26 | display: table-cell; |
| 27 | vertical-align: middle; |
| 28 | } |
| 29 | |
| 30 | |
| 31 | |
| 32 | .w3eden .panel .panel-heading{ |
| 33 | font-size: 10px; |
| 34 | } |
| 35 | .w3eden p{ |
| 36 | margin: 15px 0 !important; |
| 37 | } |
| 38 | |
| 39 | </style> |
| 40 | </head> |
| 41 | <body> |
| 42 | <div class="outer"> |
| 43 | <div class="middle"> |
| 44 | <div class="inner"> |
| 45 | <?php echo wpdm_escs($template); ?> |
| 46 | </div> |
| 47 | </div> |
| 48 | </div> |
| 49 | |
| 50 | </body> |
| 51 | |
| 52 | |
| 53 | </html> |
| 54 |