-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
31 lines (25 loc) · 1.09 KB
/
home.php
File metadata and controls
31 lines (25 loc) · 1.09 KB
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
get_header();
?>
<?php get_template_part('template-parts/category-nav'); ?>
<main class="main-content-wrapper">
<div class="d-flex flex-column justify-content-between min-vh-100">
<?php get_template_part('template-parts/toolbar'); ?>
<div>
<?php get_template_part('template-parts/home-hero'); ?>
<div class="content-area pt-4 pb-5 mx-auto flex-grow-1">
<?php
get_template_part('template-parts/technology-icons');
// get_template_part('template-parts/home-meta');
?>
<!-- Recent Post -->
<?php get_template_part('template-parts/post-sections/featured-post'); ?>
<!-- JavaScript -->
<?php get_template_part('template-parts/post-sections/post-js'); ?>
<!-- WordPress -->
<?php get_template_part('template-parts/post-sections/post-wp'); ?>
</div>
</div>
<?php
get_footer();
?>