forked from fant0mex/DIAS_
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
executable file
·41 lines (34 loc) · 945 Bytes
/
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
<?php get_header(); ?>
<div class="container">
<div class="row">
<div class="col-sm-9">
<?php if ( !have_posts() ) : ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php
while ( have_posts() ):
the_post();
?>
<div class="post entry">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail('thumb');
}
?>
<div class="summary">
<div class="info">
<?php the_time('F jS, Y'); ?> by <?php the_author( );?>
</div>
<div class="excerpt">
<?php the_excerpt(); ?>
</div>
</div>
</div>
<?php endwhile; ?>
</div>
<div class="col-sm-3">
<?php get_sidebar() ?>
</div>
</div>
<?php get_footer(); ?>