-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·45 lines (30 loc) · 1.22 KB
/
index.php
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
41
42
43
44
<?php get_header(); ?>
<div id="main">
<div id="content">
<div class="blog-index">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<article class="hentry">
<header>
<h1 class="entry-title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<p class="meta">
<time datetime="2011-07-30T13:34:00-05:00" pubdate data-updated="true" ><?php the_time('d') ?>, <?php the_time('M y') ?></time></p>
</header>
<!--<div class="entry">-->
<div class="entry-content">
<!--<?php the_content('<em>Continue reading →</em>'); ?>-->
<?php the_excerpt(); ?>
</div>
</article>
<div class="clearfix"></div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php //get_search_form(); ?>
<?php endif; ?>
</div>
<aside role=sidebar> <?php get_sidebar(); ?> </aside>
</div>
</div>
<?php get_footer(); ?>