-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
33 lines (30 loc) · 806 Bytes
/
page.php
File metadata and controls
33 lines (30 loc) · 806 Bytes
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
<?php
get_header();
$post = get_post($_GET['id']);
?>
<div class="container">
<div class="row">
<div class="col-md-12">
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div class="col-md-9">
<div class="tur-name-wr">
<div class="name_tour ">
<div class="name_tour_text">
<span style="font-size: x-large;"><?php the_title(); ?></span>
</div>
<div></div>
</div>
<?php the_content(); ?>
</div>
</div>
<?php endwhile; else : ?>
<div class="col-md-9">
<h1>Не найдено</h1>
<p>Извините, но того, что Вы искали, тут нет.</p>
</div>
<?php endif; ?>
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php get_footer(); ?>