layerindex-web/templates/admin/base_site.html
Paul Eggleton 75c44fd770 Use Django sites framework to specify website title
This allows specifying the site title in the database, instead of hardcoding
it in the template. Just change it to something other than "example.com" to
apply your own title.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2013-12-28 11:03:29 +00:00

7 lines
168 B
HTML

{% extends "admin/base.html" %}
{% block title %}{{ site_name }} Admin{% endblock %}
{% block branding %}
<h1 id="site-name">{{ site_name }} Admin</h1>
{% endblock %}