HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
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(); ?>