-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
59 lines (58 loc) · 2.87 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/img/flatiron-favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Flatiron School has been building tech talent since 2012. Their courses include software engineering, cybersecurity, data science, and product design. They say so here all of them for free!"
/>
<link rel="apple-touch-icon" href="/img/maskable_icon_x192.png" />
<meta property="og:logo" content="/img/fsos.png">
<meta property="og:title" content="Flatiron Open Source" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://flatironopensource.com/" />
<meta property="og:description" content="Flatiron School has been building tech talent since 2012. Their courses include software engineering, cybersecurity, data science, and product design. They say so here all of them for free!" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@hopesweaty" />
<meta name="twitter:title" content="FlatironOpenSource" />
<meta name="twitter:description" content="Flatiron School has been building tech talent since 2012. Their courses include software engineering, cybersecurity, data science, and product design. They say so here all of them for free!" />
<meta name="twitter:image" content="https://flatironopensource.com/img/fsos.png" />
<link rel="manifest" href="/manifest.json" />
<title>Flatiron Open Source</title>
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
<style>
.svgLoader {
animation: spin 0.5s linear infinite;
margin: auto;
}
.divLoader {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app. Please enable JavaScript for this page.</noscript>
<div id="root">
<div class="divLoader">
<svg class="svgLoader" viewBox="0 0 100 100" width="10em" height="10em">
<path ng-attr-d="{{config.pathCmd}}" ng-attr-fill="{{config.color}}" stroke="none" d="M10 50A40 40 0 0 0 90 50A40 42 0 0 1 10 50" fill="#51CACC" transform="rotate(179.719 50 51)">
<animateTransform attributeName="transform" type="rotate" calcMode="linear" values="0 50 51;360 50 51" keyTimes="0;1" dur="1s" begin="0s" repeatCount="indefinite"></animateTransform>
</path>
</svg>
</div>
</div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>