diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-03-27 10:27:16 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-03-27 10:27:16 -0400 |
commit | 63caf646fa72121852eeb4944b6b9ce606665ba0 (patch) | |
tree | fd0a0a2bfa6d961599ae2a737924c1979fbb28b9 /templates/registration | |
parent | b4cf5bbafdda1b8f8fb4f51e6c961ffbbfe992d1 (diff) |
find templates -type f -exec sed -i 's/\({% block title %}\)Arch Linux/\1{{ BRANDING_DISTRONAME }}/' {} +
Diffstat (limited to 'templates/registration')
-rw-r--r-- | templates/registration/login.html | 2 | ||||
-rw-r--r-- | templates/registration/logout.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/registration/login.html b/templates/registration/login.html index ad1ac1ea..783070be 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Developer Login{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Developer Login{% endblock %} {% block content %} <div id="dev-login" class="box"> diff --git a/templates/registration/logout.html b/templates/registration/logout.html index 50b3574b..71daa2e8 100644 --- a/templates/registration/logout.html +++ b/templates/registration/logout.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Logout successful{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Logout successful{% endblock %} {% block content %} <div id="dev-logout" class="box"> |