Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.57 KB | None | 0 0
  1. <?php get_header(); ?> <!-- header -->
  2. <div id="main">
  3.     <h1>My First Heading</h1>
  4.     <p>My first paragraph.</p>
  5.     <!-- es postebi sadac iqneba, mere shegidzlia style.css-shi dizaini gaulamazo tore maxinjobaa xd -->
  6.     <?php if ( have_posts() ) : ?>
  7. <?php while ( have_posts() ) : the_post(); ?>
  8.   <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9.     <div class="post-header">
  10.        <div class="date"><?php the_time( 'M j y' ); ?></div>
  11.        <h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  12.        <div class="author"><?php the_author(); ?></div>
  13.     </div><!--end post header-->
  14.     <div class="entry clear">
  15.        <?php if ( function_exists( 'add_theme_support' ) ) the_post_thumbnail(); ?>
  16.        <?php the_content(); ?>
  17.        <?php edit_post_link(); ?>
  18.        <?php wp_link_pages(); ?> </div>
  19.     <!--end entry-->
  20.     <div class="post-footer">
  21.        <div class="comments"><?php comments_popup_link( 'Leave a Comment', '1 Comment', '% Comments' ); ?></div>
  22.     </div><!--end post footer-->
  23.     </div><!--end post-->
  24. <?php endwhile; /* rewind or continue if all posts have been fetched */ ?>
  25.     <div class="navigation index">
  26.        <div class="alignleft"><?php next_posts_link( 'Older Entries' ); ?></div>
  27.        <div class="alignright"><?php previous_posts_link( 'Newer Entries' ); ?></div>
  28.     </div><!--end navigation-->
  29. <?php else : ?>
  30. <?php endif; ?>
  31. </div>
  32. <?php get_sidebar(); ?> <!-- tu gaq ogond gverdita navigacia -->
  33. <?php get_footer(); ?> <!-- footer -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement