-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
executable file
·46 lines (38 loc) · 1.55 KB
/
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
42
43
44
45
46
<?php get_header(); ?>
<div class="container">
<div class="row row-offcanvas row-offcanvas-right">
<div class="col-md-9 push">
<p class="pull-right visible-xs">
<button type="button" class="btn btn-primary btn-xs" data-toggle="offcanvas">Toggle Sidebar</button>
</p>
<!-- <div class="page-header">
<h1><?php wp_title(''); ?></h1>
</div> -->
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article class="post">
<div class="row">
<div class="col-md-5">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('medium'); ?></a>
</div>
<div class="col-md-6">
<div class="excerpt">
<p><em>
By <?php the_author(); ?> on <?php echo the_time('l F j Y'); ?> in <?php the_category(', '); ?>
<a href="<?php comments_link(); ?>"><?php comments_number(); ?></a>
</em></p>
<?php the_excerpt(); ?>
</div>
</div>
</div>
</article>
<?php endwhile; else: ?>
<div class="page-header">
<h1>Oh No!</h1>
</div>
<p>No content is appearing for this page, bummer.</p>
<?php endif; ?>
</div>
<?php get_sidebar('blog'); ?>
</div>
<?php get_footer(); ?>