20 lines
303 B
PHP
20 lines
303 B
PHP
<?php
|
|
/**
|
|
*Template Name: Квесты/Quests
|
|
*/
|
|
?>
|
|
|
|
<?php get_header(); ?>
|
|
|
|
<div class="quests">
|
|
<?php
|
|
get_template_part('parts/page-header');
|
|
get_template_part('parts/quests/quests-list');
|
|
?>
|
|
</div>
|
|
|
|
<?php
|
|
get_template_part('parts/compound');
|
|
get_footer();
|
|
?>
|