-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfront-page.php
More file actions
31 lines (22 loc) · 951 Bytes
/
front-page.php
File metadata and controls
31 lines (22 loc) · 951 Bytes
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
<?php
/**
* Chipmunk: Front page
*
* @package WordPress
* @subpackage Chipmunk
*/
get_header(); ?>
<?php Chipmunk\Helpers::get_template_part('partials/intro-text'); ?>
<?php if (!Chipmunk\Helpers::get_theme_option('disable_homepage_listings')) : ?>
<?php do_action('chipmunk_before_resources_tabs'); ?>
<?php Chipmunk\Helpers::get_template_part('sections/tabs'); ?>
<?php do_action('chipmunk_after_resources_tabs'); ?>
<?php Chipmunk\Helpers::get_template_part('partials/toolbox'); ?>
<?php endif; ?>
<?php if (!Chipmunk\Helpers::get_theme_option('disable_homepage_collections')) : ?>
<?php Chipmunk\Helpers::get_template_part('sections/collections'); ?>
<?php endif; ?>
<?php if (!Chipmunk\Helpers::get_theme_option('disable_homepage_posts')) : ?>
<?php Chipmunk\Helpers::get_template_part(['sections/loop', 'post']); ?>
<?php endif; ?>
<?php get_footer(); ?>