-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
35 lines (23 loc) · 916 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
32
33
34
35
<?php get_header(); ?>
<div id="content">
<div id="inner-content" class="row row-fw">
<main id="main" class="small-12 columns" role="main">
<section class="block hero-block">
<?php get_template_part( 'parts/content', 'hero' ); ?>
</section>
<section class="block about-block ltgreen">
<?php get_template_part( 'parts/content', 'about' ); ?>
</section>
<section class="block portfolio-block">
<?php get_template_part( 'parts/content', 'portfolio' ); ?>
</section>
<section class="block resume-block ltgreen">
<?php get_template_part( 'parts/content', 'resume' ); ?>
</section>
<section class="block contact-block ltblue">
<?php get_template_part( 'parts/content', 'contact' ); ?>
</section>
</main> <!-- end #main -->
</div> <!-- end #inner-content -->
</div> <!-- end #content -->
<?php get_footer(); ?>