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.

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