summaryrefslogtreecommitdiff
path: root/templates/news
diff options
context:
space:
mode:
Diffstat (limited to 'templates/news')
-rw-r--r--templates/news/add.html2
-rw-r--r--templates/news/delete.html2
-rw-r--r--templates/news/list.html6
-rw-r--r--templates/news/view.html4
4 files changed, 7 insertions, 7 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 71cd3d02..8662a91b 100644
--- a/templates/news/list.html
+++ b/templates/news/list.html
@@ -1,16 +1,16 @@
{% 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 %}
<div id="news-article-list" class="box">
- <h2>Arch Linux News Archives</h2>
+ <h2>{{ BRANDING_DISTRONAME }} News Archives</h2>
{% if perms.news.add_news %}
<ul class="admin-actions">
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 %}