-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.61 KB
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Personal website for Jake Ruth.">
<title>Jake Ruth</title>
<!-- Avoid overhead of babel/webpack by statically using react js -->
<!-- This results in a little code ugliness but like... I don't care ;) #PersonWebsite -->
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<!-- Import order matters here, child nodes need to be imported before parents (lol, #rip webpack woes) -->
<script src="js/StickyHeader.jsx" type="text/babel"></script>
<script src="js/LandingScreen.jsx" type="text/babel"></script>
<script src="js/AboutMe.jsx" type="text/babel"></script>
<script src="js/TechStack.jsx" type="text/babel"></script>
<script src="js/OldProjects.jsx" type="text/babel"></script>
<script src="js/App.jsx" type="text/babel"></script>
<link rel="shortcut icon" href="images/favicon.png">
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/grids-responsive-min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div id="reactjs-root"></div>
</body
</html>