-
Notifications
You must be signed in to change notification settings - Fork 3
/
page.php
48 lines (40 loc) · 1.1 KB
/
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
40
41
42
43
44
45
46
47
48
<?php
/**
* The template for displaying all pages.
*
* @package WordPress Sverige
*/
get_header();
while ( have_posts() ) : the_post(); ?>
<!-- Start Page Header -->
<section id="page-header" class="section">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="page-title"><?php the_title(); ?></h1>
</div>
</div>
</div>
</section>
<!-- Start Page Header -->
<!-- Start Page Content -->
<section id="page-full" class="section">
<div class="container">
<div class="row">
<div class="col-md-9 page-content">
<?php
the_content();
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Sidor:', 'wpsvse' ),
'after' => '</div>',
) );
edit_post_link( 'Redigera', '<span class="edit-link">', '</span>' );
?>
</div>
<?php get_sidebar(); ?>
</div>
</div>
</section>
<!-- End Page Content -->
<?php endwhile; // end of the loop. ?>
<?php get_footer(); ?>