-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
61 additions
and
682 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
# MacOS files | ||
.DS_Store | ||
.DS_Store? | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta property="static-page-id" content="1"> | ||
<title>Renegade Girls - About</title> | ||
|
||
<!-- Media --> | ||
<meta property="og:site_name" content="Renegade Girls Tinkering Club"> | ||
<meta property="og:title" content="Renegade Girls - Home"> | ||
<meta property="og:description" content="An afterschool and summer camp to empower young girls in engineering"> | ||
<meta propery="og:determiner" content="the"> | ||
<meta property="og:type" content="text/html"> | ||
<meta property="og:url" content="https://renegadegirls.github.io/Site/"> | ||
<meta property="og:image" content="https://renegadegirls.github.io/Site/images/github/social.png"> | ||
|
||
<!-- Favicons --> | ||
<link rel="icon" type="image/x-icon" href="../images/favicon/favicon.ico?v=2"> | ||
<link rel="apple-touch-icon" href="../images/favicon/favicon-large.png"> | ||
<link rel="shortcut icon" type="image/x-icon" href="../images/favicon/favicon.ico"> | ||
|
||
<!-- Import --> | ||
<script src="../global/utils/include.js"></script> | ||
<link rel="stylesheet" href="../global/global.css"> | ||
<link rel="stylesheet" href="style.css"> | ||
<script src="../global/utils/detectmobile.js"></script> | ||
<script src="../global/global.js"></script> | ||
|
||
<link rel="preload" as="image" href="../images/logo/logo-transparent.png"> | ||
|
||
<!-- Icons --> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> | ||
</head> | ||
|
||
<body> | ||
<div data-href="../global/tiles/navigation.html"></div> | ||
<div id="content"> | ||
|
||
</div> | ||
<div data-href="../global/tiles/footer.html"></div> | ||
|
||
<!-- Main Script --> | ||
<script src="script.js"></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
fetch("http://localhost:3000/api/programs", { | ||
method: "GET", | ||
headers: { | ||
"Access-Control-Allow-Origin": "*", | ||
"Content-Type": "application/json" | ||
} | ||
}) | ||
.then(data => data.json()) | ||
.then(json => console.log(json)) |
Empty file.