-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (32 loc) · 886 Bytes
/
index.html
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
<!doctype html>
<html>
<head>
{% include 'resources.html' %}
<!-- Entry point -->
<script src="js/main.js"></script>
</head>
<body>
<div id="mainContent" class="content">
<div id="homePage">
<!-- {% include 'home.html' %} -->
</div>
<div id="resumePage">
{% include 'resume.html' %}
</div>
<div id="projectsPage">
{% include 'projects.html' %}
</div>
<div id="contactPage">
{% include 'contactMe.html' %}
</div>
</div>
<div id="sandbox">
<div class="menu">
<div class="home" data-target="homePage">Home</div>
<div class="projects" data-target="projectsPage">Projects</div>
<div class="resume" data-target="resumePage">Resume</div>
<div class="contactMe" data-target="contactPage">Contact</div>
</div>
</div>
</body>
</html>