-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
46 lines (46 loc) · 1.42 KB
/
index.php
File metadata and controls
46 lines (46 loc) · 1.42 KB
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
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
* @package TechEngage
*/
get_header(); ?>
<!--==================== main content section ====================-->
<main id="content">
<div class="container">
<div class="row">
<div class="<?php if( !is_active_sidebar('sidebar-1')) { echo "col-lg-12 col-md-12"; } else { echo "col-lg-9 col-md-9"; } ?>">
<div class="content-container">
<div class="row">
<?php
while(have_posts()){the_post();
get_template_part('content','');
?>
<?php } ?>
<div class="col-lg-12 text-center">
<?php
//Previous / next page navigation
the_posts_pagination( array(
'prev_text' => '<i class="fa fa-long-arrow-left"></i>',
'next_text' => '<i class="fa fa-long-arrow-right"></i>',
'screen_reader_text' => ' ',
) );
?>
</div>
</div>
</div>
</div>
<aside class="col-lg-3 col-md-3">
<?php get_sidebar(); ?>
</aside>
</div>
</div>
</main>
<?php
get_footer();
?>