<!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="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">
|
|
|
|
{% load staticfiles %}
|
|
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
|
|
<link rel="stylesheet" href="{% static 'css/bootstrap.css' %}" type="text/css">
|
|
<link rel="stylesheet" href="{% static 'css/style.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">
|
|
</head>
|
|
<body class="page-{{ page }}">
|
|
<nav class="navbar navbar-default">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<a class="navbar-brand" href="{% url 'hc-index' %}">Health Checks</a>
|
|
</div>
|
|
|
|
<ul class="nav navbar-nav">
|
|
<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>
|
|
|
|
|
|
<ul class="nav navbar-nav navbar-right">
|
|
{% if request.user.is_authenticated %}
|
|
{% else %}
|
|
<li><a href="{% url 'hc-login' %}">Log In</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
|
|
{% 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>
|
|
</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>
|
|
|
|
<script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
|
|
<script src="{% static 'js/bootstrap.min.js' %}"></script>
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|