-
-
Save pmac/d36987c7cde0f1c0dda71459e5afa8b1 to your computer and use it in GitHub Desktop.
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
{% set title = '500: Something went wrong...' %} | |
<!doctype html> | |
<html class="no-js"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<title>{{ title }}</title> | |
<meta name="description" content="Daily standup updates for your projects."> | |
<link rel="icon" type="image/png" href="{{ static('img/favicon.png') }}" /> | |
{% stylesheet 'common' %} | |
{% javascript 'modernizr' %} | |
</head> | |
<body> | |
<div class="page"> | |
<header> | |
<div class="container_12"> | |
<div class="grid_2"> | |
Standup | |
</div> | |
</div> | |
</header> | |
<div id="main-content" class="container_12 cf"> | |
<div class="grid_8 prefix_2 suffix_2"> | |
<div class="error-message">{{ title }}</div> | |
</div> | |
<div class="grid_8 prefix_2 suffix_2"> | |
<div class="box content-box"> | |
<p> | |
If you hit this error page after logging in with github, please let | |
us know so we can fix your Standup user account. | |
</p> | |
{% if settings.HELP_FAQ_URL %} | |
<p> | |
See <a href="{{ settings.HELP_FAQ_URL }}">our help page</a> for how to report bugs. | |
</p> | |
{% endif %} | |
</div> | |
</div> | |
</div> | |
<footer> | |
<div class="container_12 cf"> | |
<div class="grid_1"> | |
<img src="{{ static('img/logo-grey.png') }}" alt=""> | |
</div> | |
<div class="grid_5"> | |
Standup is a neat little app that helps to organize and publish | |
asynchronous status updates. | |
</div> | |
<div class="grid_6"> | |
<nav> | |
<ul> | |
<li><a href="https://github.com/mozilla/standup/issues">Report a bug</a></li> | |
<li><a href="https://github.com/mozilla/standup">Contribute</a></li> | |
</ul> | |
</nav> | |
</div> | |
</div> | |
</footer> | |
</div> | |
{% javascript 'common' %} | |
{% javascript 'browserid' %} | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment