-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from jsbrn/dev
Merge dev into master
- Loading branch information
Showing
16 changed files
with
261 additions
and
56 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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 |
---|---|---|
|
@@ -11,24 +11,34 @@ | |
<link rel="stylesheet" href="/css/normalize.css"> | ||
<link rel="stylesheet" href="/css/skeleton.css"> | ||
<link rel="stylesheet" href="/css/custom.css"> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script> | ||
</head> | ||
|
||
<body class = "bg-color"> | ||
<div class = "container"> | ||
<div class = "row top-space"> | ||
<div class = "two-thirds column"> | ||
<a title = "Go to home page" href = "/"><img class = "u-max-full-width" src = "/images/logo2.png"></img></a> | ||
<br> | ||
<span class = "u-full-width left-space large title">MOBILE REFERRALS</span> | ||
<a title = "Go to home page" href = "/"><img src = "/images/favicon.png"></img></a> | ||
<span style = "position: relative; bottom: 10px; text-decoration: none;"> | ||
<a href = "/" class = "left-space pmblue title">Get a referral</a> | ||
<a href = "/stats" class = "left-space pmblue title">Statistics</a> | ||
<a href = "/faq" class = "left-space pmblue title">FAQ</a> | ||
</span> | ||
</div> | ||
</div> | ||
</div> | ||
<div id = "nojs" class = "container top-space failure-panel"> | ||
<center> | ||
<b>This website requires Javascript. Please make sure it's enabled!</b> | ||
</center> | ||
</div> | ||
<script> | ||
document.getElementById('nojs').style.display = "none"; | ||
</script> | ||
{{{body}}} | ||
<div class = "container large-top-space bottom-space"> | ||
<i> | ||
PMReferrals.ca is a third-party tool and is not affiliated with Public Mobile. | ||
If you have any questions or concerns, please read the <a href = "/faq">FAQ</a> or email <a href = "mailto:[email protected]">[email protected]</a>. | ||
If you have any questions or concerns, email <a href = "mailto:[email protected]">[email protected]</a>. | ||
</i> | ||
</div> | ||
</body> | ||
|
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,20 @@ | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>{{title}}{{#if title}} - {{/if}}Public Mobile Referrals</title> | ||
<meta name="Public Mobile Referrals"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="shortcut icon" type="image/png" href="/images/favicon.png"/> | ||
<link rel="stylesheet" href="/css/stylesheet.css"> | ||
<link href="https://fonts.googleapis.com/css?family=Anton&display=swap" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css?family=PT+Mono&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="/css/normalize.css"> | ||
<link rel="stylesheet" href="/css/skeleton.css"> | ||
<link rel="stylesheet" href="/css/custom.css"> | ||
</head> | ||
|
||
<body class = "bg-color"> | ||
{{{body}}} | ||
</body> | ||
|
||
</html> |
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,13 @@ | ||
<div class = "container large-top-space"> | ||
<center> | ||
<div class = "row bottom-space"> | ||
<img width = "200px" src = "/images/maintenance.png"></img> | ||
</div> | ||
<div class = "row bottom-space"> | ||
<span class = "large title center">{{message}}</span> | ||
</div> | ||
<div class = "row bottom-space"> | ||
<span class = "code">{{submessage}}</span> | ||
</div> | ||
</center> | ||
</div> |
Oops, something went wrong.