This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
index.html
44 lines (39 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><%= title %></title>
<meta name="description" content="The path to your next open-source contribution.">
<link rel="icon" href="/favicon.svg" type="image/svg+xml"/>
<link rel="alternate icon" href="/favicon.ico" type="image/png" sizes="16x16"/>
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180"/>
<link rel="mask-icon" href="/favicon.svg" color="#FFFFFF"/>
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="theme-color" content="#FFFFFF" />
<meta property="dcterms:modified" content="<%= date %>" />
<!-- For facebook, linkedin etc -->
<meta property="og:title" content="<%= title %>" />
<meta property="og:url" content="https://hot.opensauced.pizza" />
<meta property="og:type" content="article" />
<meta
property="og:description"
content="Open Sauced provides structured onboarding for new contributors to open source. This structure provides a way to track your next contributions by leveraging a unique dashboard built on top of the GitHub GraphQL API."
/>
<meta property="og:image" content="/social-card.png" />
<!-- for twitter -->
<meta property="twitter:title" content="Open Sauced" />
<meta property="twitter:url" content="https://hot.opensauced.pizza" />
<meta property="twitter:type" content="article" />
<meta
property="twitter:description"
content="Open Sauced is a platform to gain insights on open source contributors and their contributions."
/>
<meta property="twitter:image" content="/social-card.png" />
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>