File: /var/www/biblioteka/wp-content/themes/biblioteka/index.php
<?php get_header(); ?>
<div class="tarpas"></div>
<div class="scroll-baras">
<div id="content">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="postas">
<div class="posto-img"><?php if ( has_post_thumbnail() ) {
the_post_thumbnail('thumbnail');
} ?></div>
<h1> <a href="<?php echo get_post_permalink(); ?>"><?php the_title(); ?></a></h1>
<p class="aut-data"><?php the_author(); ?> / <?php the_date(); ?></p>
<div><?php the_content();?></div>
</div>
<?php endwhile; else: ?>
<p><?php _e('Atsiprašome, įrašų nerasta.'); ?></p>
<?php endif; ?>
</div>
</div>
<?php get_footer(); ?>