-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·32 lines (29 loc) · 1.09 KB
/
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
<?php get_header(); ?>
<section class="content">
<div class="container">
<div class="row">
<div class="col-sm-3">
<div class="sidebar">
<h3>Categories</h3>
<?php wp_list_categories( 'title_li=' ); ?>
<h3>Archive</h3>
<?php wp_get_archives( 'type=yearly' ); ?>
</div>
</div>
<div class="col-sm-9">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( is_single() ) : ?>
<?php the_content(); ?>
<?php else : ?>
<h3><?php the_date(); ?></h3>
<h1><a href="<?php the_permalink(); ?>"><?php Fervor::the_title(); ?></a></h1>
<?php the_excerpt(); ?>
<?php endif; ?>
<?php endwhile; else : ?>
<h1>Sorry, there are no posts.</h1>
<?php endif; ?>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>