-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·30 lines (26 loc) · 1015 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
<?php get_header(); ?>
<!-- HEADER -->
<div id="full-wrapper" class="full-wrapper">
<section class="section-wrapper hBG" style="background-image: url(<?php echo get_template_directory_uri() ?>/assets/img/backgrounds/header-portal.jpeg);">
<?php get_template_part('sections/navigations/nav-primary'); ?>
<?php get_template_part('sections/header'); ?>
</section>
<!-- END HEADER -->
<main id="home" class="section-wrapper">
<div class="content">
<?php get_template_part('sections/latest-news'); ?>
<?php get_template_part('sections/weekly-internal'); ?>
<?php get_template_part('sections/events'); ?>
<?php get_template_part('sections/alura-course'); ?>
</div>
<?php get_template_part('sections/home-videos'); ?>
</main>
<section class="section-wrapper">
<div class="content">
<?php get_template_part('sections/home-products'); ?>
</div>
</section>
<?php get_template_part('sections/sponsors'); ?>
<?php get_template_part('sections/footer'); ?>
<?php get_footer(); ?>
</div>