diff options
Diffstat (limited to 'templates/news')
-rw-r--r-- | templates/news/add.html | 2 | ||||
-rw-r--r-- | templates/news/delete.html | 2 | ||||
-rw-r--r-- | templates/news/list.html | 4 | ||||
-rw-r--r-- | templates/news/view.html | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/templates/news/add.html b/templates/news/add.html index 51094659..a09366dc 100644 --- a/templates/news/add.html +++ b/templates/news/add.html @@ -1,6 +1,6 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% block title %}Arch Linux - News: {% if form.instance.id %}Edit{% else %}Add{% endif %} Article{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - News: {% if form.instance.id %}Edit{% else %}Add{% endif %} Article{% endblock %} {% block content %} <div id="news-add-article" class="box"> diff --git a/templates/news/delete.html b/templates/news/delete.html index 191c6929..d8f71bd5 100644 --- a/templates/news/delete.html +++ b/templates/news/delete.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Delete News{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Delete News{% endblock %} {% block content %} <div id="news-delete-entry" class="box"> diff --git a/templates/news/list.html b/templates/news/list.html index 4acbc7e9..3295e333 100644 --- a/templates/news/list.html +++ b/templates/news/list.html @@ -1,10 +1,10 @@ {% extends "base.html" %} {% load cycle from future %} -{% block title %}Arch Linux - News{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - News{% endblock %} {% block head %} -<link rel="alternate" type="application/rss+xml" title="Arch Linux News Updates" href="/feeds/news/" /> +<link rel="alternate" type="application/rss+xml" title="{{BRANDING_DISTRONAME}} News Updates" href="/feeds/news/" /> {% endblock %} {% block content %} diff --git a/templates/news/view.html b/templates/news/view.html index 8f49fb1f..93cf32d4 100644 --- a/templates/news/view.html +++ b/templates/news/view.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - News: {{ news.title }}{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - News: {{ news.title }}{% endblock %} {% block content %} <div itemscope itemtype="http://schema.org/Article" class="news-article box"> @@ -13,7 +13,7 @@ <meta itemprop="name" content="{{ news.author.get_full_name|escape }}"/> </div> <div style="display:none" itemprop="publisher" itemscope itemtype="http://schema.org/Organization"> - <meta itemprop="name" content="Arch Linux"/> + <meta itemprop="name" content="{{ BRANDING_DISTRONAME }}"/> </div> {% if perms.news.change_news %} |