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.

26 lines
902 B

  1. {% load hc_extras %}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <title>{% block title %}{% site_name %} - Monitor Cron Jobs. Get Notified When Your Cron Jobs Fail{% endblock %}</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
  9. {% load compress staticfiles %}
  10. <link rel="icon" type="image/x-icon" href="{% static 'img/favicon.ico' %}">
  11. {% compress css %}
  12. <link rel="stylesheet" href="{% static 'css/bootstrap.css' %}" type="text/css">
  13. <link rel="stylesheet" href="{% static 'css/base.css' %}" type="text/css">
  14. {% endcompress %}
  15. </head>
  16. <body class="page-{{ page }}">
  17. {% block containers %}
  18. <div class="container">
  19. {% block content %}{% endblock %}
  20. </div>
  21. {% endblock %}
  22. </body>
  23. </html>