You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.5 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>{% block title %}healthchecks.io - Get Notified When Your Cron Jobs Fail{% endblock %}</title>
  6. <meta name="description" content="Monitor and Get Notified When Your Cron Jobs Fail. Free alternative to Cronitor and Dead Man's Snitch.">
  7. <meta name="keywords" content="monitor cron jobs daemon background worker service cronjob monitoring crontab alert notify cronitor deadmanssnitch">
  8. {% load staticfiles %}
  9. <link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
  10. <link rel="stylesheet" href="{% static 'css/bootstrap.css' %}" type="text/css">
  11. <link rel="stylesheet" href="{% static 'css/style.css' %}" type="text/css">
  12. <link rel="stylesheet" href="{% static 'css/pricing.css' %}" type="text/css">
  13. <link rel="stylesheet" href="{% static 'css/syntax.css' %}" type="text/css">
  14. </head>
  15. <body class="page-{{ page }}">
  16. <nav class="navbar navbar-default">
  17. <div class="container">
  18. <div class="navbar-header">
  19. <a class="navbar-brand" href="{% url 'hc-index' %}">Health Checks</a>
  20. </div>
  21. <ul class="nav navbar-nav">
  22. <li {% if page == 'pricing' %} class="active" {% endif %}>
  23. <a href="{% url 'hc-pricing' %}">Pricing</a>
  24. </li>
  25. <li {% if page == 'docs' %} class="active" {% endif %}>
  26. <a href="{% url 'hc-docs' %}">Docs</a>
  27. </li>
  28. <li {% if page == 'about' %} class="active" {% endif %}>
  29. <a href="{% url 'hc-about' %}">About</a>
  30. </li>
  31. </ul>
  32. <ul class="nav navbar-nav navbar-right">
  33. {% if request.user.is_authenticated %}
  34. {% else %}
  35. <li><a href="{% url 'hc-login' %}">Log In</a></li>
  36. {% endif %}
  37. </ul>
  38. {% if request.user.is_authenticated %}
  39. <p class="navbar-text navbar-right">
  40. {{ request.user.email }}
  41. <a href="{% url 'hc-logout' %}">Log Out</a>
  42. </p>
  43. {% endif %}
  44. </div>
  45. </nav>
  46. {% block containers %}
  47. <div class="container">
  48. {% block content %}{% endblock %}
  49. </div>
  50. {% endblock %}
  51. <footer class="footer">
  52. <div class="container">
  53. &copy; 2015 Monkey See Monkey Do SIA
  54. </div>
  55. </footer>
  56. <script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
  57. <script src="{% static 'js/bootstrap.min.js' %}"></script>
  58. {% block scripts %}{% endblock %}
  59. </body>
  60. </html>