ACC SHELL
<?php get_header(); ?>
<div id="main">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="posttitle">
<div class="postdate">
<?php the_time('M') ?><br /><span><?php the_time('j'); ?></span>
</div> <!--close postdate-->
<div class="entry">
<div class="posturl">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Trvalý odkaz na <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="postmeta"><span class="pauthor"><?php the_author() ?></span><span class="pcat"><?php the_category(', ') ?></span><?php edit_post_link('Edit', '<span class="pedit">', '</span>'); ?><span class="pcom"><?php comments_popup_link('No Comments', 'Comment (1)', 'Comments (%)'); ?></span>
</div> <!--close postmeta-->
</div> <!--posturl-->
<?php the_content('Více...'); ?>
<?php wp_link_pages(); ?>
</div> <!--close enrty-->
</div> <!--close posttitle-->
</div> <!--close post-->
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('Předchozí stránka') ?></div>
<div class="alignright"><?php previous_posts_link('Další stránka') ?></div>
</div>
<?php else : ?>
<h2 class="center">Nenalezeno</h2>
<p class="center">Omlouváme se, ale hledaný výraz nebyl na stránkách nalezen.</p>
<?php endif; ?>
</div> <!--close main-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
ACC SHELL 2018