Your IP : 216.73.216.164


Current Path : /var/www/html/anwc/wp-content/themes/khore/
Upload File :
Current File : /var/www/html/anwc/wp-content/themes/khore/front-page.php

<?php
// Template Name: Main page
get_header();

if (have_posts()) :
    while (have_posts()) :
        the_post();
        ?>
        <!-- site__content -->
        <div class="site__content light">
            <!-- page -->
            <div class="page page_index light page_loaded page_active front-page" data-id="<?php echo $post->ID; ?>">
                <!-- page__scroll -->
                <div class="page__scroll">
                    <div class="index">
                        <?php get_template_part('front-page-content'); ?>
                    </div>
                </div>
                <!-- /page__scroll -->
            </div>
            <!-- /page -->
        </div>
        <!-- /site__content -->
        <?php
    endwhile;
endif;

get_footer();