This repository has been archived by the owner on Oct 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
43 lines (43 loc) · 1.7 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
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HY Alumni Job Board</title>
<link rel="stylesheet" type="text/css" href="/public/styles/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/assets/favicons/favicon.ico" type="image/x-icon"
/>
<!-- Apple Touch Icons -->
<link rel="apple-touch-icon" href="/assets/favicons/apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="57x57" href="/assets/favicons/apple-touch-icon-57x57.png"
/>
<link rel="apple-touch-icon" sizes="72x72" href="/assets/favicons/apple-touch-icon-72x72.png"
/>
<link rel="apple-touch-icon" sizes="114x114" href="/assets/favicons/apple-touch-icon-114x114.png"
/>
<link rel="apple-touch-icon" sizes="144x144" href="/assets/favicons/apple-touch-icon-144x144.png"
/>
<link rel="apple-touch-icon" sizes="60x60" href="/assets/favicons/apple-touch-icon-60x60.png"
/>
<link rel="apple-touch-icon" sizes="120x120" href="/assets/favicons/apple-touch-icon-120x120.png"
/>
<link rel="apple-touch-icon" sizes="76x76" href="/assets/favicons/apple-touch-icon-76x76.png"
/>
<link rel="apple-touch-icon" sizes="152x152" href="/assets/favicons/apple-touch-icon-152x152.png"
/>
<!-- Windows 8 Tile Icons -->
<meta name="msapplication-square70x70logo" content="/assets/favicons/smalltile.png"
/>
<meta name="msapplication-square150x150logo" content="/assets/favicons/mediumtile.png"
/>
<meta name="msapplication-wide310x150logo" content="/assets/favicons/widetile.png"
/>
<meta name="msapplication-square310x310logo" content="/assets/favicons/largetile.png"
/>
</head>
<body>
<div id="app">
</div>
<script src="/public/scripts/app.js"></script>
</body>
</html>