Guest User

Untitled

a guest
Jan 21st, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div class="content">
  3. <h2> <class='page-title'>Cтраница: <?php the_title(); ?></h2>
  4. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  5. <div class="post-main">
  6. <h1><?php the_title(); ?> <span>(<?php the_time('j.m.Y'); ?>)</span></h1>
  7. <div class="post">
  8. <?php the_content(); ?>
  9. </div>
  10. </div>
  11.  
  12. <?php endwhile; ?>
  13. <!-- post navigation -->
  14. <?php else: ?>
  15. <!-- no posts found -->
  16. <?php endif; ?>
  17.  
  18. </div>
  19.  
  20. <?php get_sidebar(); ?>
  21.  
  22. </div>
  23.  
  24. <?php get_footer(); ?>
  25.  
  26.  
  27.  
  28.  
  29. .page-title{
  30. margin:0 0 20px 0;
  31. color: #3F282F;
  32. font: 20px Verdana;
  33. border-bottom: 1px dashed #ccc;
  34. }
  35.  
  36.  
  37. [![скриншот page.php][1]][1]
  38.  
  39.  
  40. [1]: https://i.stack.imgur.com/40oNA.png
Add Comment
Please, Sign In to add comment