-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpage.php
More file actions
23 lines (22 loc) · 725 Bytes
/
page.php
File metadata and controls
23 lines (22 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
get_header();
the_post();
?>
<section class="main-content">
<div class="grid-container">
<div class="grid-x grid-padding-x align-center">
<?php
$grid = ( bp_is_user_profile() ) ? '10' : '8';
?>
<div class="cell large-<?php echo $grid ?> medium-<?php echo $grid ?>">
<header class="entry-header page-header">
<h1 class="entry-title"><?php the_title() ?></h1>
</header>
<section class="entry-content page-content">
<?php the_content(); ?>
</section>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>