-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
39 lines (34 loc) · 921 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
<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site may use a
* different template.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Heisenberg
*/
get_header();
?>
<div class="row">
<div class="hide-for-small-only medium-2 medium-offset-1 ">
<?php do_action( 'did_displays_menu' ); ?>
</div>
<div class="small-10 small-offset-1 small-push-1 medium-7 medium-offset-1 medium-push-1">
<div class="page-holder">
<?php while ( have_posts() ) : the_post(); ?>
<div class="row">
<div class="small-12 medium-12">
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
</div>
</div>
<?php endwhile; // End of the loop. ?>
</div>
</div>
</div>
<?php
get_footer();