| Server IP : 3.111.61.48 / Your IP : 216.73.216.67 Web Server : Apache System : Linux ip-10-0-5-176 6.8.0-1057-aws #60~22.04.1-Ubuntu SMP Wed May 27 08:16:59 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.2.31 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/vhost/cosmicindrani.com/wp-content/themes/indrani/ |
Upload File : |
<?php
/**
* The main template file
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package WordPress
* @subpackage Twenty_Nineteen
* @since Twenty Nineteen 1.0
*/
get_header();
?>
<section class="inner-banner" style="background-image: url('http://localhost/coco-cleaning/wp-content/uploads/2020/12/inner-banner.jpg');">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="inner-banner-content">
<h2>Services</h2>
<ul class="custom-breadcam">
<li><a href="#">Home</a></li>
<li>Services</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section class="custom-why-choose custom-pad">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-12">
<div class="custom-heading">
<span>Our Services</span>
<h3>Why Choose Us</h3>
</div>
</div>
<div class="col-lg-6 col-md-12">
<div class="why-choose-content">
<p class="demo">There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable.</p>
</div>
</div>
</div>
<div class="row">
<?php
if ( have_posts() ) {
// Load posts loop.
while ( have_posts() ) {
the_post();
get_template_part( 'template-parts/content/service-content' );
}
// Previous/next page navigation.
twentynineteen_the_posts_navigation();
} else {
// If no content, include the "No posts found" template.
get_template_part( 'template-parts/content/content', 'none' );
}
?>
</div>
<div class="row">
<div class="why-chhose-btm-conent">
<p class="demo">Stop wasting time and money on Cleaning. <a href="#">Make An Appointment</a></p>
</div>
</div>
</div>
</section>
<?php
get_footer();