From 63caf646fa72121852eeb4944b6b9ce606665ba0 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 27 Mar 2013 10:27:16 -0400 Subject: find templates -type f -exec sed -i 's/\({% block title %}\)Arch Linux/\1{{ BRANDING_DISTRONAME }}/' {} + --- templates/public/about.html | 2 +- templates/public/art.html | 2 +- templates/public/blank.html | 2 +- templates/public/donate.html | 2 +- templates/public/download.html | 2 +- templates/public/feeds.html | 2 +- templates/public/keys.html | 2 +- templates/public/svn.html | 2 +- templates/public/userlist.html | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) (limited to 'templates/public') diff --git a/templates/public/about.html b/templates/public/about.html index bf38e8a1..f5751d42 100644 --- a/templates/public/about.html +++ b/templates/public/about.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - About{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - About{% endblock %} {% block content %}

About Arch Linux

diff --git a/templates/public/art.html b/templates/public/art.html index 96312971..1ced35e7 100644 --- a/templates/public/art.html +++ b/templates/public/art.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% block title %}Arch Linux - Artwork{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Artwork{% endblock %} {% block content %}
diff --git a/templates/public/blank.html b/templates/public/blank.html index 2a8c83f4..3bf2cb2b 100644 --- a/templates/public/blank.html +++ b/templates/public/blank.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Sample Page Title{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Sample Page Title{% endblock %} {% block content %}
diff --git a/templates/public/donate.html b/templates/public/donate.html index 3b3ee108..0c20e289 100644 --- a/templates/public/donate.html +++ b/templates/public/donate.html @@ -2,7 +2,7 @@ {% load cache %} {% load static from staticfiles %} -{% block title %}Arch Linux - Donate{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Donate{% endblock %} {% block content %} {% cache 600 donations secure %} diff --git a/templates/public/download.html b/templates/public/download.html index f57e565a..614a4100 100644 --- a/templates/public/download.html +++ b/templates/public/download.html @@ -3,7 +3,7 @@ {% load url from future %} {% load static from staticfiles %} -{% block title %}Arch Linux - Downloads{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Downloads{% endblock %} {% block navbarclass %}anb-download{% endblock %} {% block content %} diff --git a/templates/public/feeds.html b/templates/public/feeds.html index 0f80e1c2..9f62c4b7 100644 --- a/templates/public/feeds.html +++ b/templates/public/feeds.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - RSS Feeds{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - RSS Feeds{% endblock %} {% block content %}
diff --git a/templates/public/keys.html b/templates/public/keys.html index 05524c48..1a21827a 100644 --- a/templates/public/keys.html +++ b/templates/public/keys.html @@ -2,7 +2,7 @@ {% load static from staticfiles %} {% load pgp %} -{% block title %}Arch Linux - Master Signing Keys{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Master Signing Keys{% endblock %} {% block content %}
diff --git a/templates/public/svn.html b/templates/public/svn.html index 0d067098..38e20ec9 100644 --- a/templates/public/svn.html +++ b/templates/public/svn.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - SVN{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - SVN{% endblock %} {% block content %}

SVN Repositories

diff --git a/templates/public/userlist.html b/templates/public/userlist.html index 0077f611..66c63400 100644 --- a/templates/public/userlist.html +++ b/templates/public/userlist.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load cache %} -{% block title %}Arch Linux - {{ user_type }}{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - {{ user_type }}{% endblock %} {% block content %} {% cache 600 dev-tu-profiles user_type %} -- cgit v1.2.3-54-g00ecf