Make WordPress Themes

source: anima/1.1.2/page.php

Last change on this file was 91053, checked in by themedropbox, 8 years ago

New version of Anima - 1.1.2

File size: 672 bytes
Line 
1<?php
2/**
3 * The template for displaying all pages.
4 *
5 * This is the template that displays all pages by default.
6 * Please note that this is the WordPress construct of pages
7 * and that other 'pages' on your WordPress site will use a
8 * different template.
9 *
10 * @package Anima
11 */
12
13get_header(); ?>
14
15        <div id="container" class="<?php echo anima_get_layout_class(); ?>">
16
17                <main id="main" role="main" class="main">
18                        <?php cryout_before_content_hook(); ?>
19                       
20                        <?php get_template_part( 'content/content', 'page' ); ?>
21
22                        <?php cryout_after_content_hook(); ?>
23                </main><!-- #main -->
24
25                <?php anima_get_sidebar(); ?>
26
27        </div><!-- #container -->
28
29<?php get_footer();
Note: See TracBrowser for help on using the repository browser.