-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (105 loc) · 5 KB
/
Copy pathindex.html
File metadata and controls
108 lines (105 loc) · 5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Rye - Social Notifications</title>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="css/styles.css" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<link rel="apple-touch-icon" sizes="57x57" href="/resources/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/resources/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/resources/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/resources/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/resources/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/resources/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/resources/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/resources/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/resources/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/resources/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/resources/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/resources/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/resources/favicon-16x16.png">
<link rel="manifest" href="/resources/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/resources/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta name="description" content="Rye app for iphone and android. Send social notifications to your friends.">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="row-fluid">
<nav>
<ul>
<li><a class="home" href="/index.html">Home</a></li>
<li><a href="/team.html">The team</a></li>
</ul>
</nav>
</div>
</div>
<div class="presentation">
<p>Send a notification to</p>
<p class="green-text" id="who">your friends</p>
<p>everytime</p>
<p class="blue-text" id="when">you worked out.</p>
</div>
<div class="container-fluid preview">
<div class="col-md-6 col-md-offset-3">
<div class="row">
<h1 class="rye-title">RYE</h1>
</div>
<div class="row description">
<div class="description-paragraph">Send social notifications to your friends.</div>
<div class="description-paragraph">Everytime you go running. Or everytime you need motivation to stop smoking. Or for anything you want.</div>
<div class="description-paragraph">Create a discussion, define a default message and its meaning, and send it! You can also simply write to your friends.</div>
</div>
<a href="https://appsto.re/au/pvf6bb.i">
<img width="120px" src="resources/app-store-logo.png"/>
</a>
</div>
</div>
<div class="container-fluid">
<div class="row footer">
<div class="col-md-6 col-md-offset-3">
<div>Rye - 2016</div>
<div>admin@ryeapi.com</div>
<a href="/ios-release-notes.html">iOS release notes</a>
</div>
</div>
</div>
<script>
function animatePresentation() {
var interval = 3000;
var who = ["to your friends", "to your crush", "to your mates", "to your siblings", "to your coworkers"];
var when = ["you went for a run", "you miss them", "you want to go out", "you're hungry", "you won", "you worked out"];
window.setTimeout(function () {
var timerWho = setInterval(function() {
var index = Math.floor((Math.random() * who.length) + 1);
$("#who").text(who[index]);
}, interval);
}, interval/2);
var timerWhen = setInterval(function() {
var index = Math.floor((Math.random() * when.length) + 1);
$("#when").text(when[index]);
}, interval);
}
$(function() {
$('.presentation').css({
'position' : 'relative',
'top' : '25%'
});
animatePresentation();
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-76964565-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>