|
|
- <!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">
-
- <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/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">
- {% endcompress %}
- </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>
-
- {% block scripts %}{% endblock %}
- </body>
- </html>
|