Skip to content

Commit dfe4e41

Browse files
committed
"Modern" Web App Settings
1 parent e1ead05 commit dfe4e41

File tree

4 files changed

+42
-4
lines changed

4 files changed

+42
-4
lines changed

img/csh.png

-1.87 KB
Binary file not shown.

img/csh_logo_square.svg

Lines changed: 17 additions & 0 deletions
Loading

index.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
//OLD header.inc
4141
?>
4242
<!DOCTYPE html>
43-
<html prefix="og: http://ogp.me/ns#" ng-app="sm">
43+
<html prefix="og: http://ogp.me/ns#" ng-app="sm" lang="en">
4444
<head>
4545
<title><?= (!empty($TITLE)) ? $TITLE . " - " : "" ?>Schedule Maker</title>
4646

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

5355
<!-- STYLE SHEETS -->
5456
<link rel="stylesheet" href="//brick.a.ssl.fastly.net/Roboto:300,700">
@@ -94,8 +96,8 @@
9496
</div>
9597
<footer class="main default">
9698
<div class="container">
97-
<div class="csh"><a target="_blank" href="http://www.csh.rit.edu/"><img src="<?=$ASSETROOTADDRESS?>img/csh.png" alt="CSH" /></a></div>
98-
<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>
99+
<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>
100+
<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>
99101
<div>
100102
Development v3: Ben Grawi (bgrawi at csh.rit.edu)<br>
101103
Development v2: Ben Russell (benrr101 at csh.rit.edu)<br>
@@ -106,7 +108,7 @@
106108
</footer>
107109
<footer class="main print">
108110
Made Using <a href='<?= $HTTPROOTADDRESS ?>'>CSH ScheduleMaker</a>
109-
<a href="http://www.csh.rit.edu/"><img height="25" src="/img/csh_print.png"></a>
111+
<a target="_blank" rel="noopener" href="http://www.csh.rit.edu/"><img height="25" src="/img/csh_print.png"></a>
110112
</footer>
111113
</div>
112114
<!-- LOAD SCRIPTS LAST -->

manifest.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"background_color": "#2B4E69",
3+
"description": "A course database lookup tool and schedule building web application for use at Rochester Institute of Technology.",
4+
"dir": "auto",
5+
"display": "standalone",
6+
"icons": [
7+
{
8+
"sizes": "48x48 72x72 96x96 128x128 256x256 512x512",
9+
"type": "image\/svg",
10+
"src": "/img/csh_logo_square.svg"
11+
}
12+
],
13+
"lang": "en",
14+
"name": "CSH ScheduleMaker",
15+
"orientation": "any",
16+
"short_name": "ScheduleMaker",
17+
"start_url": "/",
18+
"theme_color": "#2C3E50"
19+
}

0 commit comments

Comments
 (0)