%PDF- %PDF-
| Direktori : /home/gachan/www/wp-content/themes/jekas/ |
| Current File : /home/gachan/www/wp-content/themes/jekas/category.php |
<?php
get_header();
global $jekas_opts;
$sidebar_pos = isset($jekas_opts['archive_sidebar_pos']) ? $jekas_opts['archive_sidebar_pos'] : 'right';
?>
<section class="content-info">
<div class="paddings">
<div class="container">
<div class="row">
<?php if($sidebar_pos == 'left') :?>
<div class="col-md-3 sidebars"><?php get_sidebar()?></div>
<?php endif;?>
<div class="col-md-<?php print ($sidebar_pos == 'none') ? 12 : 9 ?>">
<div class="row">
<?php
if(have_posts()):
while(have_posts()) :the_post();
?>
<div class="col-md-6"><?php get_template_part('content','summary')?></div>
<?php endwhile;?>
<?php else: ?>
<div class="col-md-12"><?php get_template_part('content','none')?></div>
<?php endif;?>
</div>
</div>
<?php if($sidebar_pos == 'right') :?>
<div class="col-md-3 sidebars"><?php get_sidebar()?></div>
<?php endif;?>
<div class="col-md-12">
<ul class="pagination">
<?php jekas_pagination()?>
</ul>
</div>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>