ACC SHELL
<?php
/*
Template Name: Hlavnà stránka
*/
?>
<?php include ("header.php"); ?>
<!-- SLIDER -->
<section class="slider">
<div class="my-slider">
<?php query_posts('category_name=slider'); ?>
<?php while (have_posts()) : the_post(); $fimg = get_post_meta($post->ID, "thumb", TRUE); ?>
<div><?php echo the_post_thumbnail(); ?></div>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</div>
<!-- CONTROL ARROW -->
<div class="slider-arrow-left"><i class="fa fa-angle-left"></i></div>
<div class="slider-arrow-right"><i class="fa fa-angle-right"></i></div>
</section>
<!-- MAIN CONTENT -->
<section class="main-content clearfix">
<div class="main-content__content">
<div class="main-content__left-col">
<?php query_posts('category_name=uvodni-text'); ?>
<?php while (have_posts()) : the_post(); $fimg = get_post_meta($post->ID, "thumb", TRUE); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</div>
<div class="main-content__right-col">
<?php include("sidebar.php") ?>
</div>
</div>
<?php the_content(); ?>
</section>
<?php include ("footer.php"); ?>
ACC SHELL 2018