-
Notifications
You must be signed in to change notification settings - Fork 23
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
1 changed file
with
104 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,104 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta name="apple-itunes-app" content="app-id=1498713667, affiliate-data=myAffiliateData, app-argument=https://apps.apple.com/us/app/aspine/id1498713667?mt=8"> | ||
|
||
<!-- Global site tag (gtag.js) - Google Analytics --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-149290199-1"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'UA-149290199-1'); | ||
</script> | ||
|
||
<title>Aspine | CRLS Student Dashboard</title> | ||
|
||
<meta name="Description" content="The Aspine CRLS Student Dashboard is perfect for keeping up with your Aspen grades, the CRLS Clock, and your report cards. Checking grades the cool way since 2019!"> | ||
<meta charset="utf-8"> | ||
<meta name="Aspine" content="Aspen Scraper and Beautifier"> | ||
<meta name="viewport" content="width=device-width, initial-scale=.75"> | ||
<meta name="theme-color" content="#00551C"/> | ||
<link href="css/tabulator.css" rel="stylesheet"> | ||
<link rel="stylesheet" type="text/css" href="css/home.css"> | ||
<script type="text/javascript" src="vendor/tabulator/tabulator.min.js"></script> | ||
<script type="text/javascript" src="js/extraFunctions.js"></script> | ||
<script type="text/javascript" src="js/buttonFunctions.js"></script> | ||
<link rel="stylesheet" type="text/css" href="fonts/fontawesome/css/all.min.css"> | ||
<!--<link rel="stylesheet" type="text/css" href="css/fullcalendar.min.css">--> | ||
<link rel="icon" type="image/x-icon" href="favicon.ico"/> | ||
<link rel="manifest" href="manifest.json"> | ||
<script src="vendor/d3/d3-array.min.js"></script> | ||
<script src="vendor/d3/d3-axis.min.js"></script> | ||
<script src="vendor/d3/d3-format.min.js"></script> | ||
<script src="vendor/d3/d3-interpolate.min.js"></script> | ||
<script src="vendor/d3/d3-time.min.js"></script> | ||
<script src="vendor/d3/d3-time-format.min.js"></script> | ||
<script src="vendor/d3/d3-scale.min.js"></script> | ||
<script src="vendor/d3/d3-selection.min.js"></script> | ||
<script src="vendor/d3/d3-boxplot.min.js"></script> | ||
<script src="vendor/jquery/jquery.min.js"></script> | ||
<script src="vendor/pdf.js/pdf.min.js"></script> | ||
<script src="vendor/file-saver/FileSaver.min.js" async="true"></script> | ||
|
||
|
||
<style> | ||
div#main h1{ | ||
font-size: 3em; | ||
} | ||
div#main h4 { | ||
font-size: 1.5em; | ||
} | ||
p#home-link a{ | ||
font-size: 1.5em; | ||
} | ||
</style> | ||
|
||
</head> | ||
<body> | ||
<noscript> | ||
<p><strong> | ||
Aspine is designed to work mainly as a client-side web application | ||
to maintain security and privacy, which means that most of the code is | ||
JavaScript code run in your Web browser. | ||
Aspine is free/libre and open source software with source code available | ||
at | ||
<a href="https://github.com/Aspine/aspine/">https://github.com/Aspine/aspine/</a>. | ||
Please enable JavaScript in your Web browser in order to use Aspine. | ||
</strong></p> | ||
</noscript> | ||
|
||
<script> | ||
function goHome() { | ||
window.location.href="home.html" | ||
} | ||
</script> | ||
<div id="header"> | ||
<div class="logo" onclick="openTab(event, 'clock')"> | ||
<img id="logo" src="images/logo-circle198x198.png" alt="logo" hidden> | ||
</div> | ||
<h4 id="title" onclick="goHome()">Aspine</h4> | ||
</div> | ||
|
||
<div class="tab"> | ||
<!-- Empty Div creates a seperating line --> | ||
</div> | ||
|
||
|
||
<div id="main"> | ||
<h1>Error 404:</h1> | ||
<h4>Page not found</h4> | ||
<p id="home-link"><a href="home.html"> Click to go back to Aspine.</a></p> | ||
</div> | ||
|
||
|
||
<!-- <p>Aspine version: <span id="version">(loading…)</span></p> --> | ||
<script type="text/javascript" src="js/clock.js"></script> | ||
<!--<script type="text/javascript" src="/vendor/jscolor/jscolor.js"></script>--> | ||
<script type="text/javascript" src="js/calculate_grade.js"></script> | ||
<script type="text/javascript" src="js/home.js"></script> | ||
<script type="text/javascript" src="js/app.js"></script> | ||
</body> | ||
</html> | ||
|