ACC SHELL
<?php
/*
Template Name: Nabídka
*/
?>
<?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(); ?>
<!-- OFFERS -->
<div class="offers">
<!-- REFERENCE -->
<?php query_posts('category_name=nabidka'); ?>
<?php while (have_posts()) : the_post(); $fimg = get_post_meta($post->ID, "thumb", TRUE); ?>
<div class="offer-box">
<div class="offer-box__image"><a href="<?php the_permalink(); ?>"><?php echo the_post_thumbnail(); ?></a></div>
<div class="offer-box__content">
<div class="offer-box__content__title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>
<div class="offer-box__content__text">
<?php the_field("perex"); ?>
</div>
<div class="offer-box__content__link"><a href="<?php the_permalink(); ?>"><i class="fa fa-angle-right"></i> Více informací</a></div>
</div>
</div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</div>
</div>
<div class="main-content__right-col">
<?php include("sidebar.php") ?>
</div>
</div>
</section>
<?php include ("footer.php"); ?>
ACC SHELL 2018