Ticket #16168: No_WPQuery.txt
File No_WPQuery.txt, 522 bytes (added by , 14 years ago) |
---|
Line | |
---|---|
1 | <?php get_header(); ?> |
2 | |
3 | <div id="container"> |
4 | <div id="content" role="main"> |
5 | <?php |
6 | while (have_posts()): the_post(); |
7 | ?> |
8 | <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> |
9 | <?php |
10 | endwhile; |
11 | |
12 | // Navigation |
13 | twentyeleven_content_nav('content'); |
14 | ?> |
15 | </div><!-- #content --> |
16 | </div><!-- #container --> |
17 | |
18 | <?php get_sidebar(); ?> |
19 | <?php get_footer(); ?> |