mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2026-01-27 09:01:24 +01:00
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>
7 lines
168 B
HTML
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 %}
|
|
|