| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template Name: Extendify Template |
| 4 |
* Template Post Type: post, page |
| 5 |
*/ |
| 6 |
|
| 7 |
?> |
| 8 |
<?php wp_head(); ?> |
| 9 |
<body <?php body_class(); ?>> |
| 10 |
<div class="ep-temp-container ep-container"> |
| 11 |
|
| 12 |
<div class="ep-temp-entry-content"> |
| 13 |
<?php |
| 14 |
if (have_posts()) { |
| 15 |
while (have_posts()) { |
| 16 |
the_post(); |
| 17 |
the_content(); |
| 18 |
} |
| 19 |
} |
| 20 |
?> |
| 21 |
|
| 22 |
</div> |
| 23 |
|
| 24 |
|
| 25 |
</div><!-- #site-content --> |
| 26 |
<style> |
| 27 |
.ep-temp-container { |
| 28 |
margin-left: auto; |
| 29 |
margin-right: auto; |
| 30 |
} |
| 31 |
@media(min-width: 700px) { |
| 32 |
.ep-temp-container [class*=extendify-] [class*=wp-block] > * { |
| 33 |
margin-top: 0px; |
| 34 |
} |
| 35 |
.ep-temp-container [class*=wp-block] > * .wp-block-button__link { |
| 36 |
border-radius: 0px !important; |
| 37 |
} |
| 38 |
.ep-temp-container .wp-block-image:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.aligncenter) { |
| 39 |
margin-top:0px; |
| 40 |
} |
| 41 |
body {background-color: #fff;} |
| 42 |
html, body { |
| 43 |
font-size: 16px !important; |
| 44 |
} |
| 45 |
} |
| 46 |
</style> |
| 47 |
</body> |
| 48 |
|
| 49 |
<?php |
| 50 |
wp_footer(); |
| 51 |
|