oacpl/templates/admin/base_site.html

33 lines
911 B
HTML
Raw Normal View History

2017-08-18 22:54:57 -04:00
{% extends "admin/base.html" %}
{% load static %}
{% block title %}OACPL - Admin{% endblock %}
{% block extrahead %}
<link rel="icon" type="image/png" href="{% static 'main/img/logo.png' %}"/>
2017-09-04 12:01:57 -04:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
2017-08-18 22:54:57 -04:00
<style>
#newslettersubscription-group h3 {
display: none;
}
#newslettersubscription-group input {
transform: translate(-20px, 4px)
}
2018-01-12 01:52:50 -05:00
.mce-tinymce {
margin-left: 0 !important;
}
2017-08-18 22:54:57 -04:00
</style>
{% endblock %}
{% block branding %}
<div>
<a href="{% url 'home' %}">
<img src="{% static 'main/img/logo.png' %}" style="display:inline-block; padding-bottom: 20px">
<h1 id="site-name" style="display:inline-block">OACPL</h1>
</a>
</div>
{% endblock %}
{% block nav-global %}{% endblock %}