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.

100 lines
4.0 KiB

10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 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 webhook">
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
  10. {% load compress staticfiles %}
  11. {% compress css %}
  12. <link rel="stylesheet" href="{% static 'css/bootstrap.css' %}" type="text/css">
  13. <link rel="stylesheet" href="{% static 'css/nouislider.min.css' %}" type="text/css">
  14. <link rel="stylesheet" href="{% static 'css/nouislider.pips.css' %}" type="text/css">
  15. <link rel="stylesheet" href="{% static 'css/base.css' %}" type="text/css">
  16. <link rel="stylesheet" href="{% static 'css/welcome.css' %}" type="text/css">
  17. <link rel="stylesheet" href="{% static 'css/my_checks.css' %}" type="text/css">
  18. <link rel="stylesheet" href="{% static 'css/my_checks_mobile.css' %}" type="text/css">
  19. <link rel="stylesheet" href="{% static 'css/my_checks_desktop.css' %}" type="text/css">
  20. <link rel="stylesheet" href="{% static 'css/pricing.css' %}" type="text/css">
  21. <link rel="stylesheet" href="{% static 'css/syntax.css' %}" type="text/css">
  22. <link rel="stylesheet" href="{% static 'css/channels.css' %}" type="text/css">
  23. <link rel="stylesheet" href="{% static 'css/channel_checks.css' %}" type="text/css">
  24. {% endcompress %}
  25. </head>
  26. <body class="page-{{ page }}">
  27. <nav class="navbar navbar-default">
  28. <div class="container">
  29. <div class="navbar-header">
  30. <button
  31. type="button"
  32. class="navbar-toggle collapsed"
  33. data-toggle="collapse"
  34. data-target="#navbar"
  35. aria-expanded="false"
  36. aria-controls="navbar">
  37. <span class="sr-only">Toggle navigation</span>
  38. <span class="icon-bar"></span>
  39. <span class="icon-bar"></span>
  40. <span class="icon-bar"></span>
  41. </button>
  42. <a class="navbar-brand" href="{% url 'hc-index' %}">Health Checks</a>
  43. </div>
  44. <div id="navbar" class="navbar-collapse collapse">
  45. <ul class="nav navbar-nav">
  46. <li {% if page == 'pricing' %} class="active" {% endif %}>
  47. <a href="{% url 'hc-pricing' %}">Pricing</a>
  48. </li>
  49. <li {% if page == 'docs' %} class="active" {% endif %}>
  50. <a href="{% url 'hc-docs' %}">Docs</a>
  51. </li>
  52. <li {% if page == 'about' %} class="active" {% endif %}>
  53. <a href="{% url 'hc-about' %}">About</a>
  54. </li>
  55. </ul>
  56. {% if request.user.is_authenticated %}
  57. {% else %}
  58. <ul class="nav navbar-nav navbar-right">
  59. <li><a href="{% url 'hc-login' %}">Log In</a></li>
  60. </ul>
  61. {% endif %}
  62. {% if request.user.is_authenticated %}
  63. <p class="navbar-text navbar-right">
  64. {{ request.user.email }}
  65. <a href="{% url 'hc-logout' %}">Log Out</a>
  66. </p>
  67. {% endif %}
  68. </div>
  69. </div>
  70. </nav>
  71. {% block containers %}
  72. <div class="container">
  73. {% block content %}{% endblock %}
  74. </div>
  75. {% endblock %}
  76. <footer class="footer">
  77. <div class="container">
  78. &copy; 2015 Monkey See Monkey Do SIA
  79. </div>
  80. </footer>
  81. {% block scripts %}
  82. {% compress js %}
  83. <script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
  84. <script src="{% static 'js/bootstrap.min.js' %}"></script>
  85. {% endcompress %}
  86. {% endblock %}
  87. </body>
  88. </html>