-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
79 lines (77 loc) · 2.69 KB
/
home.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php namespace Habari; ?>
<?php if ( !defined( 'HABARI_PATH' ) ) { die('No direct access'); } ?>
<?php include 'header.php'; ?>
<div id="main-posts">
<?php $posts = (array) $posts; ?>
<?php if ( count( $posts ) ): ?>
<?php $post =reset($posts); ?>
<div class="<?php echo $post_class?>">
<?php if ( count( $post->tags ) ) : ?>
<div class="post-tags">
<?php echo $post->tags_out;?>
</div>
<?php endif; ?>
<div class="post-title">
<h3>
<a href="<?php echo $post->permalink; ?>" title="<?php echo $post->title; ?>"><?php echo $post->title_out; ?></a>
</h3>
</div>
<div class="post-sup">
<span class="post-date">
<?php $post->pubdate->out(); ?>
</span>
<span class="post-comments-link">
<a href="<?php echo $post->permalink.'#comment-form'; ?>" title="<?php _e( "Comments on this post" ); ?>"><?php echo $theme->post_comments_link( $post ); ?></a>
</span>
<br class="clear">
</div>
<div class="post-entry">
<?php echo $post->content_out; ?>
</div>
<div class="post-footer">
<?php if ( $loggedin ) : ?>
<span class="post-edit">
<a href="<?php echo $post->editlink; ?>" title="<?php _e( "Edit post" ); ?>"><?php _e( "Edit" ); ?></a>
</span>
<?php endif; ?>
</div>
</div>
<?php else: ?>
<p class="noposts prompt"><?php _e( "No posts published, yet." ); ?></p>
<?php endif; ?>
</div>
</div>
<div id="top-secondary">
<?php include'sidebar.php' ?>
</div>
<div class="clear"></div>
</div>
</div>
<div id="page-bottom">
<div id="wrapper-bottom">
<div id="bottom-primary">
<div id="prev-posts">
<?php while ($post =next($posts)) : ?>
<div class="prev-post">
<div class="prev-post-title">
<h2>
<a href="<?php echo $post->permalink; ?>" title="<?php echo $post->title; ?>"><?php echo $post->title_out; ?></a>
</h2>
</div>
<div class="prev-post-excerpt">
<p>
<?php echo $post->content_excerpt; ?>
<a href="<?php echo $post->permalink; ?>" title="<?php _e( "Continue reading %s", array($post->title) ); ?>"><img src="<?php echo $theme->get_url( 'images/arrow.png' ); ?>" alt="<?php _e( "more" ); ?>"></a>
</p>
</div>
</div>
<?php endwhile; ?>
</div>
<div id="prev-posts-footer">
<span class="nav-next"><?php echo $theme->prev_page_link( _t('Newer Posts') ); ?></span>
<span class="nav-prev"><?php echo $theme->next_page_link( _t('Older Posts') ); ?></span>
<br class="clear">
</div>
<?php //$theme->prevnext($page, Utils::archive_pages($posts->count_all())); ?>
<?php $theme->display_archives() ;?>
<?php include 'footer.php'; ?>