-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
executable file
·44 lines (33 loc) · 1.02 KB
/
index.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
44
<?php
/**
* The main template file
*
* @since 0.0.1
*/
get_header();
?>
<div id="cfct-content-wrapper" class="container xxxx" role="banner">
<?php if (have_posts()): ?>
<?php the_post(); ?>
<?php // TITLE ?>
<div class="container-fluid">
<div id="cfct-content-title" class="row justify-content-center">
<div class="col">
<h1><?php the_title(); ?></h1>
</div>
</div>
</div>
<?php // CONTENT ?>
<div class="container-fluid">
<div id="cfct-content" class="row justify-content-center pt-5 pb-5">
<div class="col">
<?php
the_content();
?>
</div>
</div>
</div>
<?php endif ?>
</div>
<?php
get_footer();