-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
31 lines (25 loc) · 920 Bytes
/
index.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
<?php
/**
* Climate Hub Index
*
* @package climatehub
*/
?>
<?php get_header(); ?>
<!-- Global -->
<div class="container">
<?php get_template_part( 'template-parts/global/title' ); ?>
<?php get_template_part( 'template-parts/global/paragraph'); ?>
</div>
<!-- About Page -->
<?php get_template_part( 'template-parts/about/highlightedSection' ); ?>
<?php get_template_part( 'template-parts/about/team-grid' ); ?>
<?php get_template_part( 'template-parts/about/board-of-directors-grid' ); ?>
<!-- Partners Page -->
<?php get_template_part( 'template-parts/partners/partners-grid' ); ?>
<!-- Projects Page -->
<?php get_template_part('template-parts/projects/projects-carousel'); ?>
<!-- Contact Page -->
<?php get_template_part( 'template-parts/contact-us/contact-us' ); ?>
<?php get_template_part( 'template-parts/contact-us/contact-us-banner' ); ?>
<?php get_footer(); ?>