-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
35 lines (27 loc) · 987 Bytes
/
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
<?php get_header(); ?>
<?php if(have_posts()): the_post(); ?>
<section class="s-news-single-head">
<img src="<?php echo get_thumbnail_src('full'); ?>" alt="" class="s-news-single-head__image">
</section>
<section class="s-news-single">
<div class="l-news-single">
<div class="l-news-single__back">
<a href="<?php echo get_the_permalink( get_option('page_for_posts') ); ?>" class="c-news__back">
< <?php pll_e('back'); ?>
</a>
</div>
<div class="l-news-single__content">
<h1 class="c-slider-hero-slide__title c-news__title">
<?php the_title(); ?>
</h1>
<div class="c-slider-hero-slide__date c-news__date">
<?php echo get_the_date( 'd F Y' ); ?>
</div>
<div class="c-news__content">
<?php the_content(); ?>
</div>
</div>
</div>
</section>
<?php endif; ?>
<?php get_footer(); ?>