-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-site-map.php
62 lines (55 loc) · 1.67 KB
/
page-site-map.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/**
* Paperplane _blankTheme
* Template Name: Pagina site map
*/
get_header();
?>
<?php
while ( have_posts() ) : the_post();
?>
<div class="wrapper">
<div class="wrapper-padded">
<div class="wrapper-padded-intro">
<div class="single-content-opening-padder">
<div class="breadcrumbs-holder grey-links undelinked-links" typeof="BreadcrumbList" vocab="http://schema.org/">
<?php bcn_display(); ?>
</div>
<div class="flex-hold flex-hold-page-opening">
<div class="page-opening-left printable">
<h1><?php the_title(); ?></h1>
<?php if ( get_field( 'page_abstract' ) ) : ?>
<p class="paragraph-variant">
<?php the_field( 'page_abstract' ); ?>
</p>
<?php endif; ?>
</div>
<div class="page-opening-right no-print">
<div class="padder">
<?php include( locate_template( 'template-parts/grid/intro-actions.php' ) ); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wrapper">
<div class="wrapper-padded">
<div class="wrapper-padded-more">
<div class="wrapper-padded-more-780 modules-wrapper">
<div class="padder">
<div class="text-module">
<div class="module-separator">
<div class="last-child-no-margin">
<?php page_site_map(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php endwhile; ?>
<?php get_footer(); ?>