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/aktualne.php

<?php
/*
Template Name: Aktuálně
*/
?>
<?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">

                <?php the_content(); ?>

                <!-- REFERENCE -->
                <?php query_posts('category_name=aktuality'); ?>
                <?php while (have_posts()) : the_post(); $fimg = get_post_meta($post->ID, "thumb", TRUE); ?>   

            		<!-- NEW BOX -->
            		<div class="new-box">
            			<div class="new-box__title"><h3><?php the_title(); ?></h3></div>
            			<div class="new-box__date">Publikováno: <?php the_date(); ?></div>
            			<div class="new-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