forked from digitoimistodude/air-light
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
46 lines (35 loc) · 1.22 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
<?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.
*
* @Date: 2019-10-15 12:30:02
* @Last Modified by: Roni Laukkarinen
* @Last Modified time: 2020-01-16 09:39:53
* @package air-light
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*/
namespace Air_Light;
the_post();
get_header();
get_template_part( 'template-parts/hero', get_post_type() ); ?>
<div class="content-area">
<main id="main" class="site-main">
<section class="block block-page has-light-bg">
<div class="container">
<h1 id="content"><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php if ( get_edit_post_link() ) : ?>
<?php
edit_post_link( sprintf( wp_kses( __( 'Edit <span class="screen-reader-text">%s</span>', 'air-light' ), [ 'span' => [ 'class' => [] ] ] ), get_the_title() ), '<p class="edit-link">', '</p>' );
?>
<?php endif; ?>
</div><!-- .container -->
</section>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer();