<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{% block title %}healthchecks.io - Get Notified When Your Cron Jobs Fail{% endblock %}</title>
|
|
<meta name="description" content="Monitor and Get Notified When Your Cron Jobs Fail. Free alternative to Cronitor and Dead Man's Snitch.">
|
|
<meta name="keywords" content="monitor cron jobs daemon background worker service cronjob monitoring crontab alert notify cronitor deadmanssnitch webhook">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
|
|
|
|
{% load compress staticfiles %}
|
|
{% compress css %}
|
|
<link rel="stylesheet" href="{% static 'css/bootstrap.css' %}" type="text/css">
|
|
<link rel="stylesheet" href="{% static 'css/nouislider.min.css' %}" type="text/css">
|
|
<link rel="stylesheet" href="{% static 'css/nouislider.pips.css' %}" type="text/css">
|
|
<link rel="stylesheet" href="{% static 'css/base.css' %}" type="text/css">
|
|
<link rel="stylesheet" href="{% static 'css/welcome.css' %}" type="text/css">
|
|
<link rel="stylesheet" href="{% static 'css/my_checks.css' %}" type="text/css">
|
|
<link rel="stylesheet" href="{% static 'css/my_checks_mobile.css' %}" type="text/css">
|
|
<link rel="stylesheet" href="{% static 'css/my_checks_desktop.css' %}" type="text/css">
|
|
<link rel="stylesheet" href="{% static 'css/pricing.css' %}" type="text/css">
|
|
<link rel="stylesheet" href="{% static 'css/syntax.css' %}" type="text/css">
|
|
<link rel="stylesheet" href="{% static 'css/channels.css' %}" type="text/css">
|
|
<link rel="stylesheet" href="{% static 'css/channel_checks.css' %}" type="text/css">
|
|
{% endcompress %}
|
|
</head>
|
|
<body class="page-{{ page }}">
|
|
<nav class="navbar navbar-default">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<button
|
|
type="button"
|
|
class="navbar-toggle collapsed"
|
|
data-toggle="collapse"
|
|
data-target="#navbar"
|
|
aria-expanded="false"
|
|
aria-controls="navbar">
|
|
<span class="sr-only">Toggle navigation</span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="{% url 'hc-index' %}">Health Checks</a>
|
|
</div>
|
|
<div id="navbar" class="navbar-collapse collapse">
|
|
<ul class="nav navbar-nav">
|
|
{% if request.user.is_authenticated %}
|
|
<li {% if page == 'checks' %} class="active" {% endif %}>
|
|
<a href="{% url 'hc-index' %}">Checks</a>
|
|
</li>
|
|
|
|
<li {% if page == 'channels' %} class="active" {% endif %}>
|
|
<a href="{% url 'hc-channels' %}">Channels</a>
|
|
</li>
|
|
|
|
{% endif %}
|
|
|
|
|
|
<li {% if page == 'pricing' %} class="active" {% endif %}>
|
|
<a href="{% url 'hc-pricing' %}">Pricing</a>
|
|
</li>
|
|
|
|
<li {% if page == 'docs' %} class="active" {% endif %}>
|
|
<a href="{% url 'hc-docs' %}">Docs</a>
|
|
</li>
|
|
|
|
<li {% if page == 'about' %} class="active" {% endif %}>
|
|
<a href="{% url 'hc-about' %}">About</a>
|
|
</li>
|
|
</ul>
|
|
|
|
|
|
{% if request.user.is_authenticated %}
|
|
{% else %}
|
|
<ul class="nav navbar-nav navbar-right">
|
|
<li><a href="{% url 'hc-login' %}">Log In</a></li>
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% if request.user.is_authenticated %}
|
|
<p class="navbar-text navbar-right">
|
|
{{ request.user.email }}
|
|
<a href="{% url 'hc-logout' %}">Log Out</a>
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
</div>
|
|
</nav>
|
|
|
|
{% block containers %}
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
<footer class="footer">
|
|
<div class="container">
|
|
© 2015 Monkey See Monkey Do SIA
|
|
</div>
|
|
</footer>
|
|
|
|
|
|
{% block scripts %}
|
|
{% compress js %}
|
|
<script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
|
|
<script src="{% static 'js/bootstrap.min.js' %}"></script>
|
|
{% endcompress %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|