-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
33 lines (23 loc) · 955 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
<?php get_header(); ?>
<div id="heading">
<div class="heading-text">
<h1><?php echo get_bloginfo('name'); ?></h1>
<p><?php echo get_bloginfo('description'); ?></p>
</div>
<img src="<?php echo get_bloginfo('template_url') ?>/assets/chip-1.svg" class="chip-img">
</div>
</header>
<main>
<!-- ABOUT -->
<?php include( 'about.php' ); ?>
<img src="<?php echo get_bloginfo('template_url') ?>/assets/chip-2.svg" class="chip-img">
<!-- PROJECTS -->
<?php include( 'projects.php' ); ?>
<img src="<?php echo get_bloginfo('template_url') ?>/assets/chip-3.svg" class="chip-img">
<!-- CONTACT -->
<?php include( 'contact.php' ); ?>
<img src="<?php echo get_bloginfo('template_url') ?>/assets/chip-4.svg" class="chip-img">
</main>
</div> <!-- .container close -->
</body>
</html>