-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
41 lines (19 loc) · 810 Bytes
/
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
<?php get_header(); ?>
<div id="posts-list" class="c-wrapper">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
<header class="entry-header">
<?php if ( has_post_thumbnail() ) { the_post_thumbnail('featured-thumb'); }?>
<a href="<?php the_permalink(); ?>"><h1 class="entry-title"><?php the_title(); ?></h1></a>
</header>
<div class="entry-content">
<?php the_excerpt(); ?>
</div>
<footer class="entry-meta">
<time><?php the_date(); ?></time>
</footer>
</article>
<?php endwhile; endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>