Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed img/csh.png
Binary file not shown.
17 changes: 17 additions & 0 deletions img/csh_logo_square.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 6 additions & 4 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
//OLD header.inc
?>
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#" ng-app="sm">
<html prefix="og: http://ogp.me/ns#" ng-app="sm" lang="en">
<head>
<title><?= (!empty($TITLE)) ? $TITLE . " - " : "" ?>Schedule Maker</title>

Expand All @@ -49,6 +49,8 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#2C3E50">
<link rel="manifest" href="manifest.json">

<!-- STYLE SHEETS -->
<link rel="stylesheet" href="//brick.a.ssl.fastly.net/Roboto:300,700">
Expand Down Expand Up @@ -94,8 +96,8 @@
</div>
<footer class="main default">
<div class="container">
<div class="csh"><a target="_blank" href="http://www.csh.rit.edu/"><img src="<?=$ASSETROOTADDRESS?>img/csh.png" alt="CSH" /></a></div>
<a target="_blank" href="https://github.com/ComputerScienceHouse/schedulemaker">Version: <?=$APP_VERSION?></a> | <a ui-sref="help">Help</a> | <a href="/status">Status</a> | <a target="_blank" href="https://github.com/ComputerScienceHouse/schedulemaker/issues">Report Issues</a>
<div class="csh"><a target="_blank" rel="noopener" href="http://www.csh.rit.edu/"><img width="80" src="<?=$ASSETROOTADDRESS?>img/csh_logo_square.svg" alt="CSH" /></a></div>
<a target="_blank" rel="noopener" href="https://github.com/ComputerScienceHouse/schedulemaker">Version: <?=$APP_VERSION?></a> | <a ui-sref="help">Help</a> | <a href="/status">Status</a> | <a target="_blank" rel="noopener" href="https://github.com/ComputerScienceHouse/schedulemaker/issues">Report Issues</a>
<div>
Development v3: Ben Grawi (bgrawi at csh.rit.edu)<br>
Development v2: Ben Russell (benrr101 at csh.rit.edu)<br>
Expand All @@ -106,7 +108,7 @@
</footer>
<footer class="main print">
Made Using <a href='<?= $HTTPROOTADDRESS ?>'>CSH ScheduleMaker</a>
<a href="http://www.csh.rit.edu/"><img height="25" src="/img/csh_print.png"></a>
<a target="_blank" rel="noopener" href="http://www.csh.rit.edu/"><img height="25" src="/img/csh_print.png"></a>
</footer>
</div>
<!-- LOAD SCRIPTS LAST -->
Expand Down
19 changes: 19 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"background_color": "#2B4E69",
"description": "A course database lookup tool and schedule building web application for use at Rochester Institute of Technology.",
"dir": "auto",
"display": "standalone",
"icons": [
{
"sizes": "48x48 72x72 96x96 128x128 256x256 512x512",
"type": "image\/svg",
"src": "/img/csh_logo_square.svg"
}
],
"lang": "en",
"name": "CSH ScheduleMaker",
"orientation": "any",
"short_name": "ScheduleMaker",
"start_url": "/",
"theme_color": "#2C3E50"
}