-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·64 lines (39 loc) · 1.54 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php get_header(); ?>
<aside class="bio">
<?php echo get_avatar( '[email protected]', $size = '96' ); ?>
<p><?php the_author_meta('description', 1); ?></p>
</aside>
<div class="content">
<section class="posts nine columns omega">
<?php query_posts('&cat=-92'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<article class="post">
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<p class="date">Posted <?php the_time('F j, Y'); ?> at <?php the_time('g:i a'); ?>
<?php if(get_the_tags()): ?>
in <?php the_tags('', ', '); ?>
<?php endif; ?>
</p>
<?php if (has_excerpt()): ?>
<?php the_excerpt(); ?>
<p><a href="<?php the_permalink(); ?>">(more…)</a></p>
<?php else: ?>
<?php the_content(); ?>
<?php endif; ?>
</article>
<?php endwhile; ?>
<nav>
<?php if(get_previous_posts_link()): ?>
<p class="newer"><?php previous_posts_link('Newer Posts',0); ?></p>
<?php endif; ?>
<?php if(get_next_posts_link()): ?>
<p class="older"><?php next_posts_link('Older Posts',0); ?></p>
<?php endif; ?>
</nav>
<?php else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</section>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>