-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpage.php
More file actions
42 lines (37 loc) · 1.03 KB
/
page.php
File metadata and controls
42 lines (37 loc) · 1.03 KB
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
<?php
/**
* The template for displaying all pages
*
* @package nusa
*/
get_header();
?>
<main id="main" class="site-main">
<section class="section section--fluid">
<div class="container">
<div class="row">
<?php get_template_part( 'template-parts/hero' ); ?>
<?php get_template_part( 'template-parts/form' ); ?>
<?php if ( ! empty( get_the_content( null, false, get_the_ID() ) ) ) { ?>
<section class="section section--content px-xl-5 px-8">
<div class="container">
<div class="row">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content/content', 'page' );
endwhile; // End of the loop.
?>
</div>
</div>
</section>
<?php } ?>
<?php get_template_part( 'template-parts/widgets' ); ?>
<?php get_template_part( 'template-parts/quote' ); ?>
<?php get_template_part( 'template-parts/accolades' ); ?>
</div>
</div>
</section>
</main><!-- #main -->
<?php
get_footer();