Skip to content

Commit

Permalink
Working on programs
Browse files Browse the repository at this point in the history
  • Loading branch information
99TheDark committed Aug 3, 2023
1 parent 1851117 commit 5c260a1
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 682 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
# MacOS files
.DS_Store
.DS_Store?
.DS_Store
674 changes: 0 additions & 674 deletions LICENSE

This file was deleted.

4 changes: 0 additions & 4 deletions README.md

This file was deleted.

2 changes: 1 addition & 1 deletion global/tiles/navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</a>
</li>
<li class="page" title="Programs">
<a href="">
<a href="../programs">
<i class="material-icons">build</i>
<p>Programs</p>
</a>
Expand Down
50 changes: 50 additions & 0 deletions programs/index.html
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>
9 changes: 9 additions & 0 deletions programs/script.js
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 added programs/style.css
Empty file.

0 comments on commit 5c260a1

Please sign in to comment.