-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsingle.php
37 lines (37 loc) · 921 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
36
37
<?php
get_header();
the_post();
$post_format = get_post_format();
?>
<section class="main-content">
<header class="single-header">
<div class="container">
<div class="columns is-centered">
<div class="column is-8">
<?php
if ( ! empty( $post_format ) ) {
get_template_part( 'inc/partials/post_formats/content', $post_format );
} else {
get_template_part( 'inc/partials/post_formats/content', 'default' );
}
?>
</div>
</div>
</div>
</header>
<div class="container">
<div class="columns is-centered">
<div class="column is-8">
<section class="entry-page-content">
<div class="text-format body-big content">
<?php the_content(); ?>
</div>
<footer class="entry-footer">
<?php get_template_part( 'inc/partials/entry/entry', 'footer' ); ?>
</footer>
</section>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>