ACC SHELL
<?php
/*
Template Name: Kontakt
*/
?>
<?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__half-col pull-left">
<?php the_content(); ?>
</div>
<div class="main-content__half-col pull-right">
<!-- CONTACT FORM -->
<div class="contact-form">
<?php query_posts('category_name=kontaktni-formular&posts_per_page=1'); ?>
<?php while (have_posts()) : the_post(); $fimg = get_post_meta($post->ID, "thumb", TRUE); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</div>
</div>
</div>
<!-- GOOGLE MAP -->
<div id="map-box"></div>
</section>
<?php include ("footer.php"); ?>
ACC SHELL 2018