Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <?php session_start();?>
  2. <?php
  3. /*
  4. Template Name: Links
  5. */
  6. ?>
  7. <?php get_header(); ?>
  8.  
  9. <div class="content">
  10. <div class="left">
  11. <div class="border-sep">
  12. <div class="title" style="margin-bottom:0;"><h1><?php the_title(); ?></h1></div>
  13. <ul class="recent">
  14. <li>
  15. <div class="article">
  16. <?php if (have_posts()) : ?>
  17. <?php while (have_posts()) : the_post(); ?>
  18. <?php ot_the_content_no_html(); ?>
  19. <?php endwhile ?>
  20. <?php endif ?>
  21. <ul style="padding-top:8px;">
  22. <li style="background-image:none; margin:0; padding:0; text-indent:0;"><?php wp_list_bookmarks('title_li=&category_before=&category_after=&show_description=1&between=<br />'); ?></li>
  23. </ul>
  24. </div>
  25. </li>
  26. </ul>
  27. </div>
  28. </div>
  29.  
  30. <?php get_sidebar(); ?>
  31. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement