45 lines
1.0 KiB
PHP
45 lines
1.0 KiB
PHP
|
|
<?php
|
||
|
|
defined( 'ABSPATH' ) || exit;
|
||
|
|
get_header(); ?>
|
||
|
|
|
||
|
|
<main class="main">
|
||
|
|
|
||
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
||
|
|
|
||
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||
|
|
|
||
|
|
<header class="post-header">
|
||
|
|
<h1 class="post-title"><?php the_title(); ?></h1>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<?php if ( has_post_thumbnail() ) : ?>
|
||
|
|
<figure class="single-post__thumb">
|
||
|
|
<?php the_post_thumbnail('large'); ?>
|
||
|
|
|
||
|
|
<?php
|
||
|
|
$cap = get_the_post_thumbnail_caption();
|
||
|
|
if ( $cap ) : ?>
|
||
|
|
<figcaption class="single-post__thumb-caption">
|
||
|
|
<?php echo esc_html( $cap ); ?>
|
||
|
|
</figcaption>
|
||
|
|
<?php endif; ?>
|
||
|
|
</figure>
|
||
|
|
<?php endif; ?>
|
||
|
|
|
||
|
|
<div class="single-post__content">
|
||
|
|
<?php the_content(); ?>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</article>
|
||
|
|
|
||
|
|
<?php get_template_part( 'template-parts/share-buttons' ); ?>
|
||
|
|
<?php get_template_part( 'template-parts/subscripts' ); ?>
|
||
|
|
|
||
|
|
<?php endwhile; endif; ?>
|
||
|
|
|
||
|
|
</main>
|
||
|
|
|
||
|
|
<?php get_template_part('sidebar');?>
|
||
|
|
|
||
|
|
<?php get_footer(); ?>
|