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.

153 lines
6.4 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
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 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 - Monitor Cron Jobs. 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. <link rel="icon" type="image/x-icon" href="{% static 'img/favicon.ico' %}">
  12. {% compress css %}
  13. <link rel="stylesheet" href="{% static 'css/bootstrap.css' %}" type="text/css">
  14. <link rel="stylesheet" href="{% static 'css/nouislider.min.css' %}" type="text/css">
  15. <link rel="stylesheet" href="{% static 'css/nouislider.pips.css' %}" type="text/css">
  16. <link rel="stylesheet" href="{% static 'css/base.css' %}" type="text/css">
  17. <link rel="stylesheet" href="{% static 'css/welcome.css' %}" type="text/css">
  18. <link rel="stylesheet" href="{% static 'css/my_checks.css' %}" type="text/css">
  19. <link rel="stylesheet" href="{% static 'css/my_checks_mobile.css' %}" type="text/css">
  20. <link rel="stylesheet" href="{% static 'css/my_checks_desktop.css' %}" type="text/css">
  21. <link rel="stylesheet" href="{% static 'css/pricing.css' %}" type="text/css">
  22. <link rel="stylesheet" href="{% static 'css/syntax.css' %}" type="text/css">
  23. <link rel="stylesheet" href="{% static 'css/channels.css' %}" type="text/css">
  24. <link rel="stylesheet" href="{% static 'css/channel_checks.css' %}" type="text/css">
  25. <link rel="stylesheet" href="{% static 'css/log.css' %}" type="text/css">
  26. <link rel="stylesheet" href="{% static 'css/add_pushover.css' %}" type="text/css">
  27. <link rel="stylesheet" href="{% static 'css/settings.css' %}" type="text/css">
  28. {% endcompress %}
  29. </head>
  30. <body class="page-{{ page }}">
  31. <nav class="navbar navbar-default">
  32. <div class="container">
  33. <div class="navbar-header">
  34. <button
  35. type="button"
  36. class="navbar-toggle collapsed"
  37. data-toggle="collapse"
  38. data-target="#navbar"
  39. aria-expanded="false"
  40. aria-controls="navbar">
  41. <span class="sr-only">Toggle navigation</span>
  42. <span class="icon-bar"></span>
  43. <span class="icon-bar"></span>
  44. <span class="icon-bar"></span>
  45. </button>
  46. <a class="navbar-brand"
  47. href="{% url 'hc-index' %}"
  48. title="healthchecks.io - Monitor Cron Jobs">
  49. {% if request.user.is_authenticated %}
  50. <img
  51. id="logo"
  52. height="50"
  53. width="59"
  54. src="{% static 'img/logo.png'%}"
  55. srcset="{% static 'img/logo.png'%} 1x, {% static 'img/[email protected]'%} 2x"
  56. alt="healthchecks.io">
  57. {% else %}
  58. <img
  59. id="logo"
  60. height="50"
  61. width="200"
  62. src="{% static 'img/logo-full.png'%}"
  63. srcset="{% static 'img/logo-full.png'%} 1x, {% static 'img/[email protected]'%} 2x"
  64. alt="healthchecks.io">
  65. {% endif %}
  66. </a>
  67. </div>
  68. <div id="navbar" class="navbar-collapse collapse">
  69. <ul id="nav-main-sections" class="nav navbar-nav">
  70. {% if request.user.is_authenticated %}
  71. <li {% if page == 'checks' %} class="active" {% endif %}>
  72. <a href="{% url 'hc-checks' %}">Checks</a>
  73. </li>
  74. <li {% if page == 'channels' %} class="active" {% endif %}>
  75. <a href="{% url 'hc-channels' %}">Integrations</a>
  76. </li>
  77. {% endif %}
  78. {% if USE_PAYMENTS %}
  79. <li {% if page == 'pricing' %} class="active" {% endif %}>
  80. <a href="{% url 'hc-pricing' %}">Pricing</a>
  81. </li>
  82. {% endif %}
  83. <li {% if page == 'docs' %} class="active" {% endif %}>
  84. <a href="{% url 'hc-docs' %}">Docs</a>
  85. </li>
  86. <li {% if page == 'about' %} class="active" {% endif %}>
  87. <a href="{% url 'hc-about' %}">About</a>
  88. </li>
  89. </ul>
  90. {% if request.user.is_authenticated %}
  91. {% else %}
  92. <ul class="nav navbar-nav navbar-right">
  93. <li><a href="{% url 'hc-login' %}">Log In</a></li>
  94. </ul>
  95. {% endif %}
  96. {% if request.user.is_authenticated %}
  97. <ul class="nav navbar-nav navbar-right">
  98. <li class="dropdown">
  99. <a id="nav-email" href="#" class="dropdown-toggle" data-toggle="dropdown" role="button">
  100. {{ request.user.email }} <span class="caret"></span>
  101. </a>
  102. <ul class="dropdown-menu">
  103. <li><a href="{% url 'hc-profile' %}">Settings</a></li>
  104. <li role="separator" class="divider"></li>
  105. <li><a href="{% url 'hc-logout' %}">Log Out</a></li>
  106. </ul>
  107. </li>
  108. </ul>
  109. {% endif %}
  110. </div>
  111. </div>
  112. </nav>
  113. {% block containers %}
  114. <div class="container">
  115. {% block content %}{% endblock %}
  116. </div>
  117. {% endblock %}
  118. <footer class="footer">
  119. <div class="container">
  120. <ul>
  121. <li>&copy; 2015 Monkey See Monkey Do SIA</li>
  122. <li><a href="{% url 'hc-privacy' %}">Privacy</a></li>
  123. {% if USE_PAYMENTS %}
  124. <li><a href="{% url 'hc-pricing' %}">Pricing</a></li>
  125. {% endif %}
  126. <li><a href="{% url 'hc-about' %}">Contact</a></li>
  127. </ul>
  128. </div>
  129. </footer>
  130. {% block scripts %}
  131. {% compress js %}
  132. <script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
  133. <script src="{% static 'js/bootstrap.min.js' %}"></script>
  134. {% endcompress %}
  135. {% endblock %}
  136. </body>
  137. </html>