mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 15:17:57 +00:00
16 lines
398 B
HTML
16 lines
398 B
HTML
{% extends "admin/base_site.html" %}
|
|
{% load hc_extras static %}
|
|
{% block title %}{% site_name %} Administration{% endblock %}
|
|
|
|
{% block extrastyle %}
|
|
<link rel="stylesheet" href="{% static 'css/icomoon.css' %}" type="text/css">
|
|
{% endblock %}
|
|
|
|
{% block branding %}
|
|
<h1 id="site-name">
|
|
<a href="{% url 'admin:index' %}">{% site_name %}</a>
|
|
<small>{% site_version %}</small>
|
|
</h1>
|
|
{% endblock %}
|
|
|