-
Notifications
You must be signed in to change notification settings - Fork 0
/
loop.php
30 lines (30 loc) · 1.03 KB
/
loop.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
<?php if(have_posts()) : ?>
<section class="posts-section">
<div class="container">
<ul class="posts-list">
<?php while(have_posts()) : the_post(); ?>
<li id="post-<?php the_ID(); ?>" <?php post_class('three columns'); ?>>
<article id="post-<?php the_ID(); ?>">
<header class="post-header">
<h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<p class="meta">
<span class="date"><?php echo get_the_date(); ?></span>
<span class="author"><?php _e('by', 'jeo'); ?> <?php the_author(); ?></span>
</p>
</header>
<section class="post-content">
<div class="post-excerpt">
<?php the_excerpt(); ?>
</div>
</section>
<aside class="actions clearfix">
<?php echo jeo_find_post_on_map_button(); ?>
<a href="<?php the_permalink(); ?>"><?php _e('Read more', 'jeo'); ?></a>
</aside>
</article>
</li>
<?php endwhile; ?>
</ul>
</div>
</section>
<?php endif; ?>