-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
43 lines (29 loc) · 770 Bytes
/
page.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
41
42
43
<?php
/**
* The template for displaying the content.
*
* (C) BYMARC
*
*/
?>
<?php get_header(); ?>
<!-- HTML content starts! -->
<!-- LOOP? page-->
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php get_template_part('template-parts/stage/stage-page') ?>
<section>
<div class="container">
<div class="row justify-content-center">
<div class="col-12">
<div class="content">
<?php the_content(); ?>
</div>
</div>
</div>
</div>
</section>
<?php endwhile;
endif; ?>
<!-- HTML content ends! -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>