-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
34 lines (31 loc) · 1.05 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
<?php get_header(); ?>
<main class="main-page container-fluid mt-5 cebg-light">
<div class="row content">
<div class="main-left col-lg">
<div class="post-ads col-sm-12 text-center bg-white mx-auto mt-4">
<?php if ( is_active_sidebar( 'reklamlar' ) ) : ?><?php dynamic_sidebar( 'reklamlar' ); ?><?php endif; ?>
</div>
<div class="row px-3">
<?php if ( have_posts() ) : ?>
<?php if ( is_home() && ! is_front_page() ) : ?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header>
<?php endif; ?>
<?php
while ( have_posts() ) : the_post();
get_template_part( 'content', get_post_format() );
endwhile;
else :
get_template_part( 'content' );
endif;
?>
</div>
<div class="post-ads col-sm-12 text-center bg-white mx-auto mb-4">
<?php if ( is_active_sidebar( 'reklamlar' ) ) : ?><?php dynamic_sidebar( 'reklamlar' ); ?><?php endif; ?>
</div>
</div>
<?php get_sidebar(); ?>
</div>
</main>
<?php get_footer(); ?>