Skip to content

Commit 7161b1e

Browse files
authored
Merge pull request #13 from MoralCode/v0.2rc
Release v0.2rc
2 parents a2ed11c + b13c948 commit 7161b1e

File tree

8 files changed

+599
-354
lines changed

8 files changed

+599
-354
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ Here are some features to look forward to in a future version:
3333

3434
## How to install?
3535

36-
ClassTime is a web-based app that can be saved to your phone's home screen or bookmarked in your browser for easy access.
36+
ClassClock is a web-based app that can be saved to your phone's home screen or bookmarked in your browser for easy access.
3737

3838
### iOS
3939

40-
1. Navigate to https://classclock.app in Safari (not tested on other browsers)
40+
1. Navigate to ClassClock in Safari (not tested on other browsers)
4141
2. Click the "Share" or "Action" button (it looks like a square with an arrow pointing up out of the top)
4242
3. Click "Add to Home Screen" on the bottom row (you might have to scroll sideways to see it)
4343
4. Click "Done" in the top corner of the screen to add it to your home screen.
4444

4545

4646
### Android
4747

48-
1. Navigate to https://classclock.app (instructions for Google Chrome)
48+
1. Navigate to ClassClock (instructions for Google Chrome)
4949
2. Click the "Overflow" button on the top right of your screen (it looks like three vertical dots)
5050
3. Click "Add to Home Screen" button in the menu (it's about 2/3 of the way down)
5151
4. Click "Add" in the dialog box that pops up to add it to your home screen.

_config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
name: ClassClock
3+
githubURL: https://github.com/MoralCode/ClassClock
4+
slackURL: https://join.slack.com/t/classclock/shared_invite/enQtNTE0MDkyNzAwNzU3LWNhMGUwODU2ZjhkYTYxMTgzNDE1OWEyMGY2OGNiNTBhOWM5NDVhZGUzNDVlNzRiZTE3NTNmODFjYWNkNDhmMDU
5+
twitterURL: https://twitter.com/classclockapp
6+
instagramURL: https://www.instagram.com/classclockapp/

_layouts/default.html

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<html>
22
<head>
3+
<!-- Matomo Tag Manager -->
4+
<script type="text/javascript">
5+
var _mtm = _mtm || [];
6+
_mtm.push({'mtm.startTime': (new Date().getTime()), 'event': 'mtm.Start'});
7+
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
8+
g.type='text/javascript'; g.async=true; g.defer=true; g.src='https://analytics.adriancedwards.com/js/container_b9i4lGUG.js'; s.parentNode.insertBefore(g,s);
9+
</script>
10+
<!-- End Matomo Tag Manager -->
11+
312
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
413
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
514
<meta content="utf-8" http-equiv="encoding">
@@ -17,22 +26,9 @@
1726

1827
</head>
1928
<body onload="{{ page.onload |default: "" }}">
20-
{{ content }}
29+
<p id="flash"></p>
30+
<div id="page">
31+
{{ content }}
32+
</div>
2133
</body>
22-
<!-- Matomo -->
23-
<script type="text/javascript" async>
24-
var _paq = _paq || [];
25-
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
26-
_paq.push(['trackPageView']);
27-
_paq.push(['enableLinkTracking']);
28-
(function() {
29-
var u="//analytics.adriancedwards.com/";
30-
_paq.push(['setTrackerUrl', u+'piwik.php']);
31-
_paq.push(['setSiteId', '3']);
32-
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
33-
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
34-
})();
35-
</script>
36-
<noscript><p><img src="//analytics.adriancedwards.com/piwik.php?idsite=3&amp;rec=1" style="border:0;" alt="" /></p></noscript>
37-
<!-- End Matomo Code -->
3834
</html>

0 commit comments

Comments
 (0)