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.

138 lines
5.6 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
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. {% endcompress %}
  28. </head>
  29. <body class="page-{{ page }}">
  30. <nav class="navbar navbar-default">
  31. <div class="container">
  32. <div class="navbar-header">
  33. <button
  34. type="button"
  35. class="navbar-toggle collapsed"
  36. data-toggle="collapse"
  37. data-target="#navbar"
  38. aria-expanded="false"
  39. aria-controls="navbar">
  40. <span class="sr-only">Toggle navigation</span>
  41. <span class="icon-bar"></span>
  42. <span class="icon-bar"></span>
  43. <span class="icon-bar"></span>
  44. </button>
  45. <a class="navbar-brand"
  46. href="{% url 'hc-index' %}"
  47. title="healthchecks.io - Monitor Cron Jobs">
  48. {% if request.user.is_authenticated %}
  49. <img
  50. id="logo"
  51. height="50"
  52. width="59"
  53. src="{% static 'img/logo.png'%}"
  54. srcset="{% static 'img/logo.png'%} 1x, {% static 'img/[email protected]'%} 2x"
  55. alt="healthchecks.io">
  56. {% else %}
  57. <img
  58. id="logo"
  59. height="50"
  60. width="200"
  61. src="{% static 'img/logo-full.png'%}"
  62. srcset="{% static 'img/logo-full.png'%} 1x, {% static 'img/[email protected]'%} 2x"
  63. alt="healthchecks.io">
  64. {% endif %}
  65. </a>
  66. </div>
  67. <div id="navbar" class="navbar-collapse collapse">
  68. <ul class="nav navbar-nav">
  69. {% if request.user.is_authenticated %}
  70. <li {% if page == 'checks' %} class="active" {% endif %}>
  71. <a href="{% url 'hc-checks' %}">Checks</a>
  72. </li>
  73. <li {% if page == 'channels' %} class="active" {% endif %}>
  74. <a href="{% url 'hc-channels' %}">Integrations</a>
  75. </li>
  76. {% endif %}
  77. {% if USE_PAYMENTS and False %}
  78. <li {% if page == 'pricing' %} class="active" {% endif %}>
  79. <a href="{% url 'hc-pricing' %}">Pricing</a>
  80. </li>
  81. {% endif %}
  82. <li {% if page == 'docs' %} class="active" {% endif %}>
  83. <a href="{% url 'hc-docs' %}">Docs</a>
  84. </li>
  85. <li {% if page == 'about' %} class="active" {% endif %}>
  86. <a href="{% url 'hc-about' %}">About</a>
  87. </li>
  88. </ul>
  89. {% if request.user.is_authenticated %}
  90. {% else %}
  91. <ul class="nav navbar-nav navbar-right">
  92. <li><a href="{% url 'hc-login' %}">Log In</a></li>
  93. </ul>
  94. {% endif %}
  95. {% if request.user.is_authenticated %}
  96. <p class="navbar-text navbar-right">
  97. {{ request.user.email }}
  98. <a href="{% url 'hc-logout' %}">Log Out</a>
  99. </p>
  100. {% endif %}
  101. </div>
  102. </div>
  103. </nav>
  104. {% block containers %}
  105. <div class="container">
  106. {% block content %}{% endblock %}
  107. </div>
  108. {% endblock %}
  109. <footer class="footer">
  110. <div class="container">
  111. &copy; 2015 Monkey See Monkey Do SIA
  112. </div>
  113. </footer>
  114. {% block scripts %}
  115. {% compress js %}
  116. <script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
  117. <script src="{% static 'js/bootstrap.min.js' %}"></script>
  118. {% endcompress %}
  119. {% endblock %}
  120. </body>
  121. </html>