-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
32 lines (29 loc) · 1015 Bytes
/
page.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(); ?>
<div class="container">
<div class="container">
<div class="row">
<div class="col-8 kutu icerik-kutu">
<div class="yazi-icerik">
<?php if ( have_posts() ) : while ( have_posts() ) :
the_post(); ?>
<div class="sayfa-ayarlari">
<div class="sayfa-ayarlari-baslik">
<?php the_title(); ?></div>
<?php if ( cs_get_option( 'icerik-onecikan-resim' ) ): ?>
<?php endif ?>
<?php the_content(); ?>
<?php endwhile;
endif; ?>
</div>
</div>
</div>
<div class="col-4 mobil-kutu">
<?php
if ( ! dynamic_sidebar( 'sidebar' ) ) :?>
<?php endif; ?>
<?php get_sidebar(); ?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>