-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
37 lines (28 loc) · 964 Bytes
/
page.php
File metadata and controls
37 lines (28 loc) · 964 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
34
35
36
37
<?php get_header(); ?>
<?php
if (have_posts()) {
while (have_posts()) {
the_post(); ?>
<?php if (has_post_thumbnail()) { ?>
<div class="rounded-block-with-shadow single-post-image-wrap animation" data-animation="fadeIn">
<?php the_post_thumbnail('large', array('class' => 'img-full-width')); ?>
</div>
<?php } ?>
<div class="container">
<div class="content-block">
<div class="text-block">
<h1 class="title">
<?php the_title(); ?>
</h1>
<?php the_content(); ?>
</div>
<div class="sidebar-block">
<?php get_sidebar(); ?>
</div>
</div>
<?php } ?>
</div>
<?php } else { ?>
<div>Пока тут ничего нет :(</div>
<?php } ?>
<?php get_footer();