| Server IP : 139.59.63.204 / Your IP : 216.73.217.62 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu-s-1vcpu-1gb-blr1-01 6.8.0-110-generic #110-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 19 15:09:20 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/greenbrissie.com/public_html/wp-content/themes/efb-garden/ |
Upload File : |
<?php
/**
* The template for displaying all pages
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site may use a
* different template.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package efb-tndc
*/
get_header();
while ( have_posts() ) :
the_post();
//if(get_post_thumbnail_id(get_the_ID())) {
// echo '<img src="'.wp_get_attachment_url( get_post_thumbnail_id(get_the_ID()), 'full' ).'" class="img-responsive" style="width: 100%;">';
//}
?>
<div class="pageme"><h1><?php the_title(); ?></h1></div>
<div class="container mt-3">
<div class="row">
<div class="col-sm-12">
<?php the_content(); ?>
</div>
</div>
</div>
<?php
endwhile;
get_footer();