-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
39 lines (36 loc) · 1.12 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
<?php get_header(); ?>
<header class="page-header">
<div class="container">
<div class="row">
<div class="page-title col-12">
<h1><?php the_title(); ?></h1>
</div>
</div>
</div>
</header><!-- #page-header -->
<div id="primary" class="content-area container">
<main id="content" role="main" class="page-content row">
<?php if(get_field('video_link')) : ?>
<div class="col-12">
<div class="embed-container">
<?php the_field('video_link'); ?>
</div>
</div>
<?php else : ?>
<div class="col-12 col-md-5">
<?php the_post_thumbnail(); ?>
</div>
<?php endif; ?>
<div class="col-12 col-md-7">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; else : ?>
<p><?php _e( 'Sorry, nothing matched your query.' ); ?></p>
<?php endif; ?>
</div>
</main>
<aside role="complementary" class="page-sidebar col-12 col-lg-4 offset-lg-1 col-xl-3">
<?php get_template_part( 'spm-layouts/layout', 'secondary' ); ?>
</aside>
</div><!-- #primary -->
<?php get_footer(); ?>