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