-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
54 lines (48 loc) · 1.72 KB
/
single.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
* Template Name: PageOfPosts
*/ ?>
<?php get_header(); ?>
<div class="wrapper single_page">
<div class="left_panel">
<div class="my_inf">
<div class="my_photo"></div>
<div class="my_name">Валерий Вилькс</div>
<div class="my_prof">веб-разработчик</div>
<div class="cherta"></div>
<div class="esli_voprosi">Если у Вас возникли вопросы, можете задать их мне, заполнив поля ниже</div>
<?php echo do_shortcode( '[contact-form-7 id="28" title="Форма обратной связи (боковая панель)"]' ); ?>
<div class="sidebar_social">
<a href=""><img src="<?php echo get_template_directory_uri(); ?>/img/icon_telegram.png" alt=""></a>
<a href=""><img src="<?php echo get_template_directory_uri(); ?>/img/icon_vk.png" alt=""></a>
<a href=""><img src="<?php echo get_template_directory_uri(); ?>/img/icon_inst.png" alt=""></a>
<a href=""><img src="<?php echo get_template_directory_uri(); ?>/img/icon_yt.png" alt=""></a>
<a href=""><img src="<?php echo get_template_directory_uri(); ?>/img/icon_f.png" alt=""></a>
</div>
</div>
</div>
<div class="single_content">
<div class="hleb_croch">
<?php
the_breadcrumb();
?>
</div>
<div class="cont">
<div class="zagolovok-single">
<div class="prim">
<img src="<?php the_post_thumbnail_url(); ?>" alt="">
<div class="zag">
<div class="flex_obert"><?php the_title(); ?>
</div>
</div>
</div>
</div>
</div>
<div class="text_cont">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile; endif; ?>
</div>
</div>
</div>
<?php get_footer(); ?>