-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathposts.php
More file actions
52 lines (44 loc) · 1.18 KB
/
posts.php
File metadata and controls
52 lines (44 loc) · 1.18 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
41
42
43
44
45
46
47
48
49
50
51
52
<?php theme_include('header'); ?>
<section role="main" class="container">
<?php if(has_posts()): ?>
<ul class="items">
<?php posts(); ?>
<li>
<article>
<header>
<h2>
<a href="<?php echo article_url(); ?>" title="<?php echo article_title(); ?>"><?php echo article_title(); ?></a>
</h2>
</header>
<time datetime="<?php echo date(DATE_W3C, article_time()); ?>"><?php echo relative_time(article_time()); ?></time>
<div class="content">
<?php echo article_markdown(); ?>
</div>
<footer>
<!-- fill here -->
</footer>
</article>
</li>
<?php $i = 0; while(posts()): $i++; ?>
<li>
<article class="wrap">
<h2>
<a href="<?php echo article_url(); ?>" title="<?php echo article_title(); ?>"><?php echo article_title(); ?></a>
</h2>
</article>
</li>
<?php endwhile; ?>
</ul>
<?php if(has_pagination()): ?>
<nav class="pagination">
<div class="wrap">
<?php echo posts_prev(); ?>
<?php echo posts_next(); ?>
</div>
</nav>
<?php endif; ?>
<?php else: ?>
<p>Looks like you have some writing to do!</p>
<?php endif; ?>
</section>
<?php theme_include('footer'); ?>