-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsitemap.php
33 lines (31 loc) · 902 Bytes
/
sitemap.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
<?php
/**
* Template Name: Sitemap Page
* The template for displaying a HTML sitemap for the website.
*
* @link https://codex.wordpress.org/Template_Hierarchy
* @package Nightingale
* @copyright NHS Leadership Academy
* @license https://www.gnu.org/licenses/gpl-3.0.en.html
* @author Chris Witham <[email protected]>
* @since 2.2.0
* @uses template-parts/sitemap
*/
get_header();
?>
<div id="primary" class=" nhsuk-grid-row nhsuk-width-restrict">
<div class="nhsuk-grid-column-full full-width">
<section class="sitemap">
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
</header>
<div class="page-content">
<?php get_template_part( 'template-parts/sitemap' ); ?>
</div>
<div class="nhsuk-content__clearfix"></div>
</section>
</div>
</div><!-- #primary -->
<?php
get_footer();
?>