-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·48 lines (36 loc) · 1.02 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* Index template
*
* @package Solum
* @since 1.0
*/
?>
<?php get_header(); ?>
<div class="row">
<div id="primary">
<?php tha_content_before(); ?>
<div id="content" class="hfeed" role="main">
<?php tha_content_top(); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
</h2>
<div class="entry-content">
<?php the_content(); ?>
</div><!--.entry-content-->
</div>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( 'template-parts/404' ); ?>
<?php endif; ?>
<?php get_template_part( 'template-parts/nav', 'archive' ); ?>
<?php tha_content_bottom(); ?>
</div><!-- #content -->
<?php tha_content_after(); ?>
</div><!-- #primary -->
<?php get_sidebar(); ?>
</div><!-- .row -->
<?php get_footer(); ?>