public
Description: Wordpress template based on the default template but modified for use as a starting point for theme designers.
Homepage: http://www.poweredbygeek.com/
Clone URL: git://github.com/lwallenstein/designers-default.git
designers-default / index.php
100755 40 lines (20 sloc) 0.744 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!-- index.php start -->
 
<?php get_header(); ?>
 
<div id="main_wrapper">
<div id="content" class="narrowcolumn grid_10">
 
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php include (TEMPLATEPATH . "/post.php"); ?>
<?php endwhile; ?>
<?php include (TEMPLATEPATH . "/navigation.php"); ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
 
</div>
 
<?php get_sidebar(); ?>
<div class="clear"></div>
</div>
 
<?php get_footer(); ?>
 
<!-- index.php end -->