ACC SHELL

Path : /srv/www/vhosts/dovastex/wp-content/themes/web_dovastex/
File Upload :
Current File : /srv/www/vhosts/dovastex/wp-content/themes/web_dovastex/reference.php

<?php
/*
Template Name: Reference
*/
?>

<?php include ("header.php"); ?>
    
    <!-- MAIN CONTENT -->
    <section class="main-content clearfix">
        <div class="main-content__title">
            <h1><?php the_title(); ?></h1>
            
            <!-- BREADCRUMB -->
            <?php the_breadcrumb(); ?>
        </div>
    	
    	<div class="main-content__content">
            <div class="main-content__left-col reference">

                <?php the_content(); ?>

        		<!-- REFERENCE -->
                <?php query_posts('category_name=reference'); ?>
                <?php while (have_posts()) : the_post(); $fimg = get_post_meta($post->ID, "thumb", TRUE); ?>    
            		<div class="reference-box">
        		        <div class="reference-box__title"><h3><?php the_title(); ?></h3></div>
            			<div class="reference-box__content">
                            <?php the_content(); ?>
            			</div>
            		</div>
                <?php endwhile; ?>
                <?php wp_reset_query(); ?>

        	</div>
            <div class="main-content__right-col">
               <?php include("sidebar.php") ?>
            </div>
        </div>
    </section>

<?php include ("footer.php"); ?>

ACC SHELL 2018