-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
executable file
·37 lines (32 loc) · 899 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
<?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 will use a
* different template.
*
* @package WordPress
* @subpackage Starkers
* @since Starkers 3.1
*/
get_header(); ?>
<main id="content" class="container" role="main">
<section class="row">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<article <?php post_class(); ?> >
<header>
<h1 class="page-title"><?php the_title(); ?></h1>
</header>
<div class="conteudo">
<?php the_content(); ?>
</div>
<footer>
<?php comments_template( '', true ); ?>
</footer>
</article>
<?php endwhile; // end of the loop. ?>
</section>
</main> <!-- #content -->
<?php get_footer(); ?>