-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathposts.php
executable file
·67 lines (55 loc) · 1.91 KB
/
posts.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
<?php theme_include('header'); ?>
<section class="grid 1of1 content">
<?php if(has_posts()): ?>
<ul class="items">
<?php posts(); ?>
<li>
<article class="latest-article-preview">
<h1>
<a href="<?php echo article_url(); ?>" title="<?php echo article_title(); ?>"><?php echo article_title(); ?></a>
</h1>
<p class="content">
<?php echo strip_tags(substr(article_markdown(), 0, 400)); ?>…
</p>
<a href="<?php echo article_url(); ?>" title="<?php echo article_title(); ?>" class="buttonlink">Read More</a>
<footer>
<small>
Posted <time datetime="<?php echo date(DATE_W3C, article_time()); ?>"><?php echo relative_time(article_time()); ?></time> by <?php echo article_author('real_name'); ?>.
</small>
</footer>
</article>
</li>
<hr />
<?php $i = 0; while(posts()): ?>
<li>
<article class="article-preview force-grid">
<div class="grid 2of3 stick-to-grid remove-padding">
<h3 class="remove-bottom">
<a href="<?php echo article_url(); ?>" title="<?php echo article_title(); ?>"><?php echo article_title(); ?></a>
</h3>
<footer>
<small>
Posted <time datetime="<?php echo date(DATE_W3C, article_time()); ?>"><?php echo relative_time(article_time()); ?></time> by <?php echo article_author('real_name'); ?>.
</small>
</footer>
</div>
<div class="grid 1of3 stick-to-grid remove-padding center">
<a href="<?php echo article_url(); ?>" title="<?php echo article_title(); ?>" class="buttonlink">Read</a>
</div>
</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'); ?>