-
Notifications
You must be signed in to change notification settings - Fork 104
/
single.php
40 lines (33 loc) · 842 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
38
39
40
<?php
get_header();
b4st_main_before();
?>
<?php if (function_exists('dimox_breadcrumbs')) { ?>
<?php dimox_breadcrumbs(); ?>
<?php } ?>
<main id="site-main"
class="mt-5">
<?php get_template_part('loops/single-post', get_post_format()); ?>
<?php
/*
Did you want a traditional article-plus-sidebar layout?
=======================================================
Use this below instead of the one line above -- and
remove some of the CSS styles controlling `.entry-content`
<div class="container">
<div class="row">
<div class="col-sm">
<div id="content" role="main">
<?php get_template_part('loops/single-post', get_post_format()); ?>
</div>
</div>
<?php get_sidebar(); ?>
</div>
</div>
*/
?>
</main>
<?php
b4st_main_after();
get_footer();
?>