-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 3.4 KB
/
Copy pathindex.html
File metadata and controls
66 lines (66 loc) · 3.4 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<title>emily anne moses · software engineer</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" />
<link rel="stylesheet" type="text/css" href="./style.css">
<link rel="stylesheet" type="text/css" href="components/page_home/home.css">
<link rel="stylesheet" type="text/css" href="components/page_contact/contact.css">
<link rel="stylesheet" type="text/css" href="components/page_enter/enter.css">
<link rel="stylesheet" type="text/css" href="components/page_about/about.css">
<link rel="stylesheet" type="text/css" href="components/page_portfolio/portfolio.css">
<link rel="stylesheet" type="text/css" href="components/page_mobile/mobile.css">
<link rel="stylesheet" type="text/css" href="components/footer/footer.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Dosis">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto+Mono">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Dawning+of+a+New+Day">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Abril+Fatface">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Press+Start+2P">
</head>
<body>
<div id="spaBody">
</div>
</body>
<script src='./js/app.js' type="text/javascript"></script>
<script type="text/javascript">
// if(window.innerWidth > 767) {
// window.onload = () => {
// const spa = new SPA()
// spa._start({
// landingPage: "Enter",
// components: {
// "Enter" : new Enter,
// "Home" : new Home,
// "Navbar" : new Navbar,
// "About" : new About,
// "Contact" : new Contact,
// "Portfolio" : new Portfolio,
// "Footer" : new Footer
// }
// })
// }
// } else {
window.onload = () => {
const spa = new SPA()
spa._start({
landingPage: "Mobile",
components: {
"Mobile" : new Mobile,
"Footer" : new Footer
}
})
}
// }
</script>
<script type="text/javascript" src='components/navbar/navbar.js'></script>
<script type="text/javascript" src='components/page_home/home.js'></script>
<script type="text/javascript" src='components/page_contact/contact.js'></script>
<script type="text/javascript" src='components/page_enter/enter.js'></script>
<script type="text/javascript" src='components/page_about/about.js'></script>
<script type="text/javascript" src='components/page_portfolio/portfolio.js'></script>
<script type="text/javascript" src='components/footer/footer.js'></script>
<script type="text/javascript" src='components/page_mobile/mobile.js'></script>
</html>