This repository was archived by the owner on Nov 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
46 lines (35 loc) · 1.28 KB
/
page.php
File metadata and controls
46 lines (35 loc) · 1.28 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 get_header(); ?>
<!-- Ads -->
<?php get_template_part('inc/reklam-buyuk'); ?>
<!-- Ads -->
<!-- Content -->
<div id="content" class="col-md-7 col-md-offset-1">
<?php while ( have_posts() ) : the_post(); ?>
<div class="single-post col-md-12">
<div class="single-post-headtext">
<h1><?php the_title(''); ?></h1>
<div class="widget-hr">
<div class="sari-cizgi-2"></div><div class="siyah-cizgi-2"></div>
</div>
</div>
<div class="single-post-img col-md-12">
<?php if ( has_post_thumbnail() ) {
the_post_thumbnail( array(725, 450), array( 'class' => 'img-responsive', 'style'=>'max-width:100%;height:auto' ) );
} ?>
</div>
<div class="clearfix"></div>
<div class="single-post-text row">
<p><?php the_content(''); ?></p>
</div>
<div class="clearfix"></div>
</div>
<div class="clearfix"></div>
<?php endwhile;?>
</div>
<!-- Content -->
<!-- Sidebar -->
<?php get_sidebar(); ?>
<!-- Sidebar -->
<!-- Footer -->
<?php get_footer(); ?>
<!-- Footer -->