summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--templates/404.html2
-rw-r--r--templates/base.html20
-rw-r--r--templates/devel/clock.html2
-rw-r--r--templates/devel/index.html2
-rw-r--r--templates/devel/packages.html2
-rw-r--r--templates/devel/profile.html2
-rw-r--r--templates/general_form.html2
-rw-r--r--templates/mirrors/mirror_details.html2
-rw-r--r--templates/mirrors/mirrorlist.txt2
-rw-r--r--templates/mirrors/mirrorlist_generate.html4
-rw-r--r--templates/mirrors/mirrorlist_status.txt2
-rw-r--r--templates/mirrors/mirrors.html2
-rw-r--r--templates/mirrors/status.html4
-rw-r--r--templates/mirrors/url_details.html2
-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
-rw-r--r--templates/packages/details.html2
-rw-r--r--templates/packages/details.html.jinja2
-rw-r--r--templates/packages/differences.html2
-rw-r--r--templates/packages/files.html2
-rw-r--r--templates/packages/flag.html6
-rw-r--r--templates/packages/flag_confirmed.html2
-rw-r--r--templates/packages/flagged.html2
-rw-r--r--templates/packages/flaghelp.html4
-rw-r--r--templates/packages/groups.html2
-rw-r--r--templates/packages/opensearch.xml4
-rw-r--r--templates/packages/packages_list.html2
-rw-r--r--templates/packages/removed.html2
-rw-r--r--templates/packages/search.html6
-rw-r--r--templates/packages/signoff_options.html2
-rw-r--r--templates/packages/signoffs.html2
-rw-r--r--templates/packages/stale_relations.html2
-rw-r--r--templates/public/about.html18
-rw-r--r--templates/public/art.html18
-rw-r--r--templates/public/blank.html2
-rw-r--r--templates/public/developer_list.html2
-rw-r--r--templates/public/donate.html16
-rw-r--r--templates/public/download.html22
-rw-r--r--templates/public/feeds.html14
-rw-r--r--templates/public/index.html28
-rw-r--r--templates/public/keys.html6
-rw-r--r--templates/public/svn.html4
-rw-r--r--templates/public/userlist.html4
-rw-r--r--templates/registration/login.html2
-rw-r--r--templates/registration/logout.html2
-rw-r--r--templates/releng/add.html4
-rw-r--r--templates/releng/archlinux.ipxe14
-rw-r--r--templates/releng/netboot.html10
-rw-r--r--templates/releng/release_detail.html2
-rw-r--r--templates/releng/release_list.html8
-rw-r--r--templates/releng/results.html4
-rw-r--r--templates/releng/thanks.html2
-rw-r--r--templates/sitemaps/news_sitemap.xml.jinja2
-rw-r--r--templates/todolists/list.html2
-rw-r--r--templates/todolists/todolist_confirm_delete.html2
-rw-r--r--templates/todolists/view.html2
-rw-r--r--templates/visualize/index.html2
59 files changed, 150 insertions, 150 deletions
diff --git a/templates/404.html b/templates/404.html
index 33271c66..7a667bac 100644
--- a/templates/404.html
+++ b/templates/404.html
@@ -1,5 +1,5 @@
{% extends "base.html" %}
-{% block title %}Arch Linux - Page Not Found{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Page Not Found{% endblock %}
{% block content %}
<div id="error-page" class="box 404">
diff --git a/templates/base.html b/templates/base.html
index fae2037e..df789601 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
- <title>{% block title %}Arch Linux{% endblock %}</title>
+ <title>{% block title %}{{ BRANDING_DISTRONAME }}{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="{% static "archweb.css" %}" media="screen, projection" />
<link rel="icon" type="image/x-icon" href="{% static "favicon.ico" %}" />
<link rel="shortcut icon" type="image/x-icon" href="{% static "favicon.ico" %}" />
@@ -10,12 +10,12 @@
<link rel="apple-touch-icon" sizes="72x72" href="{% static "logos/apple-touch-icon-72x72.png" %}" />
<link rel="apple-touch-icon" sizes="114x114" href="{% static "logos/apple-touch-icon-114x114.png" %}" />
<link rel="apple-touch-icon" sizes="144x144" href="{% static "logos/apple-touch-icon-144x144.png" %}" />
- <link rel="search" type="application/opensearchdescription+xml" href="{% url 'opensearch-packages' as osp %}{{ osp }}" title="Arch Linux Packages" />
+ <link rel="search" type="application/opensearchdescription+xml" href="{% url 'opensearch-packages' as osp %}{{ osp }}" title="{{ BRANDING_DISTRONAME }} Packages" />
{% block head %}{% endblock %}
</head>
<body class="{% if user.is_authenticated %}devmode {% endif %}{% block bodyclass %}{% endblock %}">
<div id="archnavbar" class="{% block navbarclass %}anb-home{% endblock %}">
- <div id="archnavbarlogo"><h1><a href="/" title="Return to the main page">Arch Linux</a></h1></div>
+ <div id="archnavbarlogo"><h1><a href="/" title="Return to the main page">{{ BRANDING_DISTRONAME }}</a></h1></div>
<div id="archnavbarmenu">
<ul id="archnavbarlist">
<li id="anb-home"><a href="/" title="Arch news, packages, projects and more">Home</a></li>
@@ -23,8 +23,8 @@
<li id="anb-forums"><a href="https://bbs.archlinux.org/" title="Community forums">Forums</a></li>
<li id="anb-wiki"><a href="https://wiki.archlinux.org/" title="Community documentation">Wiki</a></li>
<li id="anb-bugs"><a href="https://bugs.archlinux.org/" title="Report and track bugs">Bugs</a></li>
- <li id="anb-aur"><a href="https://aur.archlinux.org/" title="Arch Linux User Repository">AUR</a></li>
- <li id="anb-download"><a href="{% url 'page-download' as pdl %}{{ pdl }}" title="Get Arch Linux">Download</a></li>
+ <li id="anb-aur"><a href="https://aur.archlinux.org/" title="{{ BRANDING_DISTRONAME }} User Repository">AUR</a></li>
+ <li id="anb-download"><a href="{% url 'page-download' as pdl %}{{ pdl }}" title="Get {{ BRANDING_DISTRONAME }}">Download</a></li>
</ul>
</div>
</div>
@@ -33,13 +33,13 @@
{% if user.is_authenticated %}
<ul>
<li><a href="{% url 'devel-index' %}" title="Developer Dashboard">Dashboard</a></li>
- <li><a href="https://wiki.archlinux.org/index.php/DeveloperWiki"
+ <li><a href="{% wiki_url 'DeveloperWiki' %}"
title="Developer Wiki">DevWiki</a></li>
<li><a href="{% url 'news-list' as newsl %}{{ newsl }}" title="Manage news articles">News</a></li>
<li><a href="/packages/signoffs/" title="Package signoffs">Signoffs</a></li>
<li><a href="/todo/" title="Developer todo lists">Todos</a></li>
<li><a href="{% url 'devel-clocks' %}" title="Developer world clocks">Dev Clocks</a></li>
- <li><a href="https://mailman.archlinux.org/mailman/private/arch-dev/"
+ <li><a href="{{ MAILMAN_BASE_URL }}/mailman/private/arch-dev/"
title="arch-dev mailing list archives">Archives</a></li>
<li><a href="https://stats.archlinux.org/munin/"
title="Arch server monitoring">Server Monitoring</a></li>
@@ -73,9 +73,9 @@
title="Contact Judd Vinet">Judd Vinet</a> and <a href="mailto:aaron@archlinux.org"
title="Contact Aaron Griffin">Aaron Griffin</a>.</p>
- <p>The Arch Linux name and logo are recognized
- <a href="https://wiki.archlinux.org/index.php/DeveloperWiki:TrademarkPolicy"
- title="Arch Linux Trademark Policy">trademarks</a>. Some rights reserved.</p>
+ <p>The {{ BRANDING_DISTRONAME }} name and logo are recognized
+ <a href="{% wiki_url 'DeveloperWiki:TrademarkPolicy' %}"
+ title="{{ BRANDING_DISTRONAME }} Trademark Policy">trademarks</a>. Some rights reserved.</p>
<p>The registered trademark Linux® is used pursuant to a sublicense from LMI,
the exclusive licensee of Linus Torvalds, owner of the mark on a world-wide basis.</p>
diff --git a/templates/devel/clock.html b/templates/devel/clock.html
index 9d672f12..6dc7defd 100644
--- a/templates/devel/clock.html
+++ b/templates/devel/clock.html
@@ -4,7 +4,7 @@
{% load flags %}
{% load tz %}
-{% block title %}Arch Linux - Developer World Clocks{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Developer World Clocks{% endblock %}
{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% endblock %}
diff --git a/templates/devel/index.html b/templates/devel/index.html
index e9330734..0de285d5 100644
--- a/templates/devel/index.html
+++ b/templates/devel/index.html
@@ -5,7 +5,7 @@
{% load package_extras %}
{% load todolists %}
-{% block title %}Arch Linux - Developer Dashboard{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Developer Dashboard{% endblock %}
{% block content %}
<div id="dev-dashboard" class="box">
diff --git a/templates/devel/packages.html b/templates/devel/packages.html
index c190ab08..63dd91aa 100644
--- a/templates/devel/packages.html
+++ b/templates/devel/packages.html
@@ -4,7 +4,7 @@
{% load attributes %}
{% load package_extras %}
-{% block title %}Arch Linux - {{ title }}{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - {{ title }}{% endblock %}
{% block content %}
<div class="box">
diff --git a/templates/devel/profile.html b/templates/devel/profile.html
index acdc22a9..dff5d925 100644
--- a/templates/devel/profile.html
+++ b/templates/devel/profile.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load static from staticfiles %}
-{% block title %}Arch Linux - Edit Profile{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Edit Profile{% endblock %}
{% block content %}
<div id="dev-edit-profile" class="box">
diff --git a/templates/general_form.html b/templates/general_form.html
index 1fa33513..c6d6cb1c 100644
--- a/templates/general_form.html
+++ b/templates/general_form.html
@@ -1,5 +1,5 @@
{% extends "base.html" %}
-{% block title %}Arch Linux - {{title}}{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - {{title}}{% endblock %}
{% block content %}
<div id="generic-form" class="box">
diff --git a/templates/mirrors/mirror_details.html b/templates/mirrors/mirror_details.html
index 64009380..9a553e69 100644
--- a/templates/mirrors/mirror_details.html
+++ b/templates/mirrors/mirror_details.html
@@ -5,7 +5,7 @@
{% load flags %}
{% load admin_urls %}
-{% block title %}Arch Linux - {{ mirror.name }} - Mirror Details{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - {{ mirror.name }} - Mirror Details{% endblock %}
{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% endblock %}
diff --git a/templates/mirrors/mirrorlist.txt b/templates/mirrors/mirrorlist.txt
index a7f8e2af..b8eada93 100644
--- a/templates/mirrors/mirrorlist.txt
+++ b/templates/mirrors/mirrorlist.txt
@@ -4,7 +4,7 @@ them, sacrifices have to be made. If editing this template, it is easiest to
forget about where line breaks are happening until you are done getting the
content right, and then go back later to fix it all up.
{% endcomment %}{% autoescape off %}##
-## Arch Linux repository mirrorlist
+## {{ BRANDING_DISTRONAME }} repository mirrorlist
## Generated on {% now "Y-m-d" %}
##{% for mirror_url in mirror_urls %}{% ifchanged %}
diff --git a/templates/mirrors/mirrorlist_generate.html b/templates/mirrors/mirrorlist_generate.html
index 59b0d358..71ba6557 100644
--- a/templates/mirrors/mirrorlist_generate.html
+++ b/templates/mirrors/mirrorlist_generate.html
@@ -1,6 +1,6 @@
{% extends "base.html" %}
{% load package_extras %}
-{% block title %}Arch Linux - Pacman Mirrorlist Generator{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Pacman Mirrorlist Generator{% endblock %}
{% block content %}
<div id="mirrorlist-gen" class="box">
@@ -28,7 +28,7 @@
<h3>Customized by country mirrorlist</h3>
<p>The following form can generate a custom up-to-date
- <a href="https://wiki.archlinux.org/index.php/Pacman"
+ <a href="{% wiki_url 'Pacman' %}"
title="ArchWiki: Pacman">pacman</a> mirrorlist based on geography and
desired protocol(s). Simply replace the contents of
<code>/etc/pacman.d/mirrorlist</code> with your generated list.
diff --git a/templates/mirrors/mirrorlist_status.txt b/templates/mirrors/mirrorlist_status.txt
index c69075a3..746aae76 100644
--- a/templates/mirrors/mirrorlist_status.txt
+++ b/templates/mirrors/mirrorlist_status.txt
@@ -4,7 +4,7 @@ them, sacrifices have to be made. If editing this template, it is easiest to
forget about where line breaks are happening until you are done getting the
content right, and then go back later to fix it all up.
{% endcomment %}{% autoescape off %}##
-## Arch Linux repository mirrorlist
+## {{ BRANDING_DISTRONAME }} repository mirrorlist
## Sorted by mirror score from mirror status page
## Generated on {% now "Y-m-d" %}
##
diff --git a/templates/mirrors/mirrors.html b/templates/mirrors/mirrors.html
index f55bd875..3450d439 100644
--- a/templates/mirrors/mirrors.html
+++ b/templates/mirrors/mirrors.html
@@ -3,7 +3,7 @@
{% load static from staticfiles %}
{% load flags %}
-{% block title %}Arch Linux - Mirror Overview{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Mirror Overview{% endblock %}
{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% endblock %}
diff --git a/templates/mirrors/status.html b/templates/mirrors/status.html
index 530e3ff5..f11d57ca 100644
--- a/templates/mirrors/status.html
+++ b/templates/mirrors/status.html
@@ -3,14 +3,14 @@
{% load mirror_status %}
{% load flags %}
-{% block title %}Arch Linux - Mirror Status{% if tier != None %} - Tier {{ tier }}{% endif %}{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Mirror Status{% if tier != None %} - Tier {{ tier }}{% endif %}{% endblock %}
{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% endblock %}
{% block content %}
<div id="mirrorstatus" class="box">
<h2>Mirror Status{% if tier != None %} - Tier {{ tier }}{% endif %}</h2>
- <p>This page reports the status of all known, public, and active Arch Linux
+ <p>This page reports the status of all known, public, and active {{ BRANDING_DISTRONAME }}
mirrors. All data on this page reflects the status of the mirrors within
the <em>last {{ cutoff|hours }}</em>. All listed times are UTC. The check script runs
on a regular basis and polls for the <tt>lastsync</tt> file in the root of
diff --git a/templates/mirrors/url_details.html b/templates/mirrors/url_details.html
index b61033cd..96fcc49d 100644
--- a/templates/mirrors/url_details.html
+++ b/templates/mirrors/url_details.html
@@ -3,7 +3,7 @@
{% load mirror_status %}
{% load flags %}
-{% block title %}Arch Linux - {{ url.url }} - URL Details{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - {{ url.url }} - URL Details{% endblock %}
{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% endblock %}
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..7bc65721 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 %}
diff --git a/templates/packages/details.html b/templates/packages/details.html
index 7a0f8e88..82f2c604 100644
--- a/templates/packages/details.html
+++ b/templates/packages/details.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load static from staticfiles %}
-{% block title %}Arch Linux - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}){% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}){% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
{% block content %}
diff --git a/templates/packages/details.html.jinja b/templates/packages/details.html.jinja
index 9a72622d..f5b08805 100644
--- a/templates/packages/details.html.jinja
+++ b/templates/packages/details.html.jinja
@@ -69,7 +69,7 @@
<meta itemprop="fileSize" content="{{ pkg.compressed_size }}"/>
<meta itemprop="dateCreated" content="{{ pkg.build_date|date("Y-m-d") }}"/>
<meta itemprop="datePublished" content="{{ pkg.last_update|date("Y-m-d") }}"/>
- <meta itemprop="operatingSystem" content="Arch Linux"/>
+ <meta itemprop="operatingSystem" content="{{ BRANDING_DISTRONAME }}"/>
{% if pkg.packager %}<div style="display:none" itemprop="provider" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="{{ pkg.packager.get_full_name()|escape }}"/>
</div>{% endif %}
diff --git a/templates/packages/differences.html b/templates/packages/differences.html
index 5ebe18e2..bde05a50 100644
--- a/templates/packages/differences.html
+++ b/templates/packages/differences.html
@@ -3,7 +3,7 @@
{% load static from staticfiles %}
{% load package_extras %}
-{% block title %}Arch Linux - Package Differences Reports{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Package Differences Reports{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
{% block content %}
diff --git a/templates/packages/files.html b/templates/packages/files.html
index 879fcbff..667a77cb 100644
--- a/templates/packages/files.html
+++ b/templates/packages/files.html
@@ -1,5 +1,5 @@
{% extends "base.html" %}
-{% block title %}Arch Linux - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}) - File List{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}) - File List{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
{% block content %}
diff --git a/templates/packages/flag.html b/templates/packages/flag.html
index a83f37ff..34f1c7fb 100644
--- a/templates/packages/flag.html
+++ b/templates/packages/flag.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load package_extras %}
-{% block title %}Arch Linux - Flag Package - {{ package.pkgname }} {{ package.full_version }} ({{ package.arch.name }}){% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Flag Package - {{ package.pkgname }} {{ package.full_version }} ({{ package.arch.name }}){% endblock %}
{% block head %}<meta name="robots" content="noindex"/>{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
@@ -23,13 +23,13 @@
<p>The message box portion is meant
for short messages only. If you need more than 200 characters for your
message, then file a bug report, email the maintainer directly, or send
- an email to the <a href="https://mailman.archlinux.org/mailman/listinfo/arch-general"
+ an email to the <a href="{{ MAILMAN_BASE_URL }}/mailman/listinfo/arch-general"
title="Visit the arch-general mailing list">arch-general mailing list</a>
with your additional text.</p>
<p><strong>Note:</strong> Do <em>not</em> use this facility if the
package is broken! The package will be unflagged and the report will be ignored!
- <a href="https://bugs.archlinux.org/" title="Arch Linux Bugtracker">Use the
+ <a href="https://bugs.archlinux.org/" title="{{ BRANDING_DISTRONAME }} Bugtracker">Use the
bugtracker to file a bug</a> instead.</p>
<p>Please confirm your flag request for {{package.pkgname}}:</p>
diff --git a/templates/packages/flag_confirmed.html b/templates/packages/flag_confirmed.html
index 6274adbb..a4c4db2a 100644
--- a/templates/packages/flag_confirmed.html
+++ b/templates/packages/flag_confirmed.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load package_extras %}
-{% block title %}Arch Linux - Package Flagged - {{ package.pkgname }} {{ package.full_version }} ({{ package.arch.name }}){% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Package Flagged - {{ package.pkgname }} {{ package.full_version }} ({{ package.arch.name }}){% endblock %}
{% block head %}<meta name="robots" content="noindex"/>{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
diff --git a/templates/packages/flagged.html b/templates/packages/flagged.html
index bbe0fad5..4b12ca8f 100644
--- a/templates/packages/flagged.html
+++ b/templates/packages/flagged.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load package_extras %}
-{% block title %}Arch Linux - Flag Package - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}){% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Flag Package - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}){% endblock %}
{% block head %}<meta name="robots" content="noindex"/>{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
diff --git a/templates/packages/flaghelp.html b/templates/packages/flaghelp.html
index c6860264..eb2226f2 100644
--- a/templates/packages/flaghelp.html
+++ b/templates/packages/flaghelp.html
@@ -24,12 +24,12 @@
<p>The message box portion of the flag utility is meant
for short messages only. If you need more than 200 characters for your
message, then file a bug report, email the maintainer directly, or send
- an email to the <a target="_blank" href="https://mailman.archlinux.org/mailman/listinfo/arch-general"
+ an email to the <a target="_blank" href="{{ MAILMAN_BASE_URL }}/mailman/listinfo/arch-general"
title="Visit the arch-general mailing list">arch-general mailing list</a>
with your additional text.</p>
<p><strong>Note:</strong> Please do <em>not</em> use this facility if the
package is broken! Use the <a target="_blank" href="https://bugs.archlinux.org/"
- title="Arch Linux Bugtracker">bugtracker</a> instead.</p>
+ title="{{ BRANDING_DISTRONAME }} Bugtracker">bugtracker</a> instead.</p>
</body>
</html>
diff --git a/templates/packages/groups.html b/templates/packages/groups.html
index ee4f0312..39a13389 100644
--- a/templates/packages/groups.html
+++ b/templates/packages/groups.html
@@ -2,7 +2,7 @@
{% load cycle from future %}
{% load static from staticfiles %}
-{% block title %}Arch Linux - Package Groups{% if arch %} - {{ arch }}{% endif %}{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Package Groups{% if arch %} - {{ arch }}{% endif %}{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
{% block content %}
diff --git a/templates/packages/opensearch.xml b/templates/packages/opensearch.xml
index 6c50d991..e7e13617 100644
--- a/templates/packages/opensearch.xml
+++ b/templates/packages/opensearch.xml
@@ -1,8 +1,8 @@
{% load static from staticfiles %}<?xml version="1.0" encoding="UTF-8"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>Arch Packages</ShortName>
- <LongName>Arch Linux Package Repository Search</LongName>
- <Description>Search the Arch Linux package repositories by keyword in package names and descriptions.</Description>
+ <LongName>{{ BRANDING_DISTRONAME }} Package Repository Search</LongName>
+ <Description>Search the {{ BRANDING_DISTRONAME }} package repositories by keyword in package names and descriptions.</Description>
<Tags>linux archlinux package software</Tags>
<Image height="16" width="16" type="image/x-icon">{{ domain }}{% static "favicon.ico" %}</Image>
<Image height="64" width="64" type="image/png">{{ domain }}{% static "logos/icon-transparent-64x64.png" %}</Image>
diff --git a/templates/packages/packages_list.html b/templates/packages/packages_list.html
index 0a1627f8..9736d36c 100644
--- a/templates/packages/packages_list.html
+++ b/templates/packages/packages_list.html
@@ -3,7 +3,7 @@
{% load static from staticfiles %}
{% load package_extras %}
-{% block title %}Arch Linux - {{ name }} ({{ arch.name }}) - {{ list_title }}{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - {{ name }} ({{ arch.name }}) - {{ list_title }}{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
{% block content %}
diff --git a/templates/packages/removed.html b/templates/packages/removed.html
index f188b6db..2d730130 100644
--- a/templates/packages/removed.html
+++ b/templates/packages/removed.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load package_extras %}
-{% block title %}Arch Linux - Not Available - {{ name }} {{ version }} ({{ arch.name }}){% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Not Available - {{ name }} {{ version }} ({{ arch.name }}){% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
{% block content %}
diff --git a/templates/packages/search.html b/templates/packages/search.html
index d4a47b26..8037a413 100644
--- a/templates/packages/search.html
+++ b/templates/packages/search.html
@@ -2,12 +2,12 @@
{% load cycle from future %}
{% load package_extras %}
-{% block title %}Arch Linux - Package Search{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Package Search{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
{% block head %}
{% if is_paginated and page_obj.number > 1 %}<meta name="robots" content="noindex, nofollow"/>{% endif %}
-<link rel="alternate" type="application/rss+xml" title="Arch Linux Package Updates" href="/feeds/packages/" />
+<link rel="alternate" type="application/rss+xml" title="{{ BRANDING_DISTRONAME }} Package Updates" href="/feeds/packages/" />
{% endblock %}
{% block content %}
@@ -143,7 +143,7 @@
{% else %}searching the <a href="https://aur.archlinux.org/">AUR</a>{% endif %}
to see if the package can be found there.</p>
- <p>You are browsing the Arch Linux package database. From here you can find
+ <p>You are browsing the {{ BRANDING_DISTRONAME }} package database. From here you can find
detailed information about packages located in the official supported repositories.</p>
</div>
{% endblock %}
diff --git a/templates/packages/signoff_options.html b/templates/packages/signoff_options.html
index ee9b8b47..40b7cac7 100644
--- a/templates/packages/signoff_options.html
+++ b/templates/packages/signoff_options.html
@@ -1,6 +1,6 @@
{% extends "base.html" %}
-{% block title %}Arch Linux - Package Signoff Options - {{ package.pkgbase }} {{ package.full_version }} ({{ package.arch.name }}){% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Package Signoff Options - {{ package.pkgbase }} {{ package.full_version }} ({{ package.arch.name }}){% endblock %}
{% block head %}<meta name="robots" content="noindex"/>{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
diff --git a/templates/packages/signoffs.html b/templates/packages/signoffs.html
index 1c133f15..06766935 100644
--- a/templates/packages/signoffs.html
+++ b/templates/packages/signoffs.html
@@ -3,7 +3,7 @@
{% load static from staticfiles %}
{% load package_extras %}
-{% block title %}Arch Linux - Package Signoffs{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Package Signoffs{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
{% block content %}
diff --git a/templates/packages/stale_relations.html b/templates/packages/stale_relations.html
index 2dafc2be..949b563e 100644
--- a/templates/packages/stale_relations.html
+++ b/templates/packages/stale_relations.html
@@ -2,7 +2,7 @@
{% load cycle from future %}
{% load static from staticfiles %}
-{% block title %}Arch Linux - Stale Package Relations{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Stale Package Relations{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}
{% block content %}
diff --git a/templates/public/about.html b/templates/public/about.html
index bf38e8a1..0c4c0d8b 100644
--- a/templates/public/about.html
+++ b/templates/public/about.html
@@ -1,10 +1,10 @@
{% extends "base.html" %}
-{% block title %}Arch Linux - About{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - About{% endblock %}
{% block content %}
<div class="box">
- <h2 class="title">About Arch Linux</h2>
+ <h2 class="title">About {{ BRANDING_DISTRONAME }}</h2>
<p>
-Arch Linux is an independently developed, i686/x86-64 general purpose GNU/Linux
+{{ BRANDING_DISTRONAME }} is an independently developed, i686/x86-64 general purpose GNU/Linux
distribution versatile enough to suit any role. Development focuses on
simplicity, minimalism, and code elegance. Arch is installed as a
minimal base system, configured by the user upon which their own ideal
@@ -15,7 +15,7 @@ simple text files. Arch strives to stay bleeding edge, and typically offers
the latest stable versions of most software.
</p>
<p>
-Arch Linux uses its own Pacman package manager, which couples simple binary
+{{ BRANDING_DISTRONAME }} uses its own Pacman package manager, which couples simple binary
packages with an easy-to-use package build system. This allows users to
easily manage and customize packages ranging from official Arch software to the
user's own personal packages to packages from 3rd party sources. The repository
@@ -27,14 +27,14 @@ contribution.
The minimal Arch base package set resides in the streamlined [core] repository.
In addition, the official [extra], [community], and [testing] repositories
provide several thousand high-quality, packages to meet your software demands.
-Arch also offers an [unsupported] section in the Arch Linux User Repository
+Arch also offers an [unsupported] section in the {{ BRANDING_DISTRONAME }} User Repository
(AUR), which contains over 9,000 build scripts, for compiling installable
-packages from source using the Arch Linux makepkg application.
+packages from source using the {{ BRANDING_DISTRONAME }} makepkg application.
</p>
<p>
-Arch Linux uses a "rolling release" system which allows one-time installation
+{{ BRANDING_DISTRONAME }} uses a "rolling release" system which allows one-time installation
and perpetual software upgrades. It is not generally necessary to reinstall
-or upgrade your Arch Linux system from one "version" to the next.
+or upgrade your {{ BRANDING_DISTRONAME }} system from one "version" to the next.
By issuing one command, an Arch system is kept up-to-date and on the bleeding
edge.
</p>
@@ -45,7 +45,7 @@ compiles and runs correctly with the other packages installed on an up-to-date
Arch system.
</p>
<p>
-To summarize: Arch Linux is a versatile, and simple distribution designed to
+To summarize: {{ BRANDING_DISTRONAME }} is a versatile, and simple distribution designed to
fit the needs of the competent Linux&#0174; user. It is both powerful and easy
to manage, making it an ideal distro for servers and workstations. Take it in
any direction you like. If you share this vision of what a GNU/Linux
diff --git a/templates/public/art.html b/templates/public/art.html
index afab5498..c8a79a03 100644
--- a/templates/public/art.html
+++ b/templates/public/art.html
@@ -1,18 +1,18 @@
{% extends "base.html" %}
{% load static from staticfiles %}
-{% block title %}Arch Linux - Artwork{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Artwork{% endblock %}
{% block content %}
<div id="artwork" class="box">
- <h2>Arch Linux Logos and Artwork</h2>
+ <h2>{{ BRANDING_DISTRONAME }} Logos and Artwork</h2>
<h3>Logos for Press Usage</h3>
- <p>The following Arch Linux logos are available for press and other use, subject to
- the restrictions of our <a href="https://wiki.archlinux.org/index.php/DeveloperWiki:TrademarkPolicy"
- title="Arch Linux Trademark Policy">trademark policy</a>.</p>
+ <p>The following {{ BRANDING_DISTRONAME }} logos are available for press and other use, subject to
+ the restrictions of our <a href="{% wiki_url 'DeveloperWiki:TrademarkPolicy' %}"
+ title="{{ BRANDING_DISTRONAME }} Trademark Policy">trademark policy</a>.</p>
<p><strong>Two-color standard version</strong><br />
<em>Also available in print-quality
@@ -22,7 +22,7 @@
title="Download scalable SVG format">SVG</a> formats.</em></p>
<img src="{% static "logos/archlinux-logo-dark-90dpi.png" %}"
- alt="Arch Linux PNG logo @ 90dpi" title="Arch Linux PNG logo @ 90dpi" />
+ alt="{{ BRANDING_DISTRONAME }} PNG logo @ 90dpi" title="{{ BRANDING_DISTRONAME }} PNG logo @ 90dpi" />
<p><strong>Two-color inverted version</strong> (for dark backgrounds)<br />
<em>Also available in print-quality
@@ -32,7 +32,7 @@
title="Download scalable SVG format">SVG</a> formats.</em></p>
<img src="{% static "logos/archlinux-logo-light-90dpi.png" %}"
- alt="Arch Linux PNG logo @ 90dpi" title="Arch Linux PNG logo @ 90dpi" class="inverted" />
+ alt="{{ BRANDING_DISTRONAME }} PNG logo @ 90dpi" title="{{ BRANDING_DISTRONAME }} PNG logo @ 90dpi" class="inverted" />
<p><strong>One-color standard version</strong><br />
<em>Also available in print-quality
@@ -42,7 +42,7 @@
title="Download scalable SVG format">SVG</a> formats.</em></p>
<img src="{% static "logos/archlinux-logo-black-90dpi.png" %}"
- alt="Arch Linux PNG logo @ 90dpi" title="Arch Linux PNG logo @ 90dpi" />
+ alt="{{ BRANDING_DISTRONAME }} PNG logo @ 90dpi" title="{{ BRANDING_DISTRONAME }} PNG logo @ 90dpi" />
<p><strong>One-colour inverted version</strong> (for dark backgrounds)<br />
<em>Also available in print-quality
@@ -52,7 +52,7 @@
title="Download scalable SVG format">SVG</a> formats.</em></p>
<img src="{% static "logos/archlinux-logo-white-90dpi.png" %}"
- alt="Arch Linux PNG logo @ 90dpi" title="Arch Linux PNG logo @ 90dpi" class="inverted" />
+ alt="{{ BRANDING_DISTRONAME }} PNG logo @ 90dpi" title="{{ BRANDING_DISTRONAME }} PNG logo @ 90dpi" class="inverted" />
<h3>Logos and Artwork for the Community</h3>
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 %}
<div id="sample-page-id" class="box">
diff --git a/templates/public/developer_list.html b/templates/public/developer_list.html
index 954216ce..041780d7 100644
--- a/templates/public/developer_list.html
+++ b/templates/public/developer_list.html
@@ -23,7 +23,7 @@
<meta itemprop="familyName" content="{{ dev.last_name|escape }}"/>
<meta itemprop="jobTitle" content="{{ group.member_title|escape }}"/>
<div style="display:none" itemprop="memberOf" itemscope itemtype="http://schema.org/Organization">
- <meta itemprop="name" content="Arch Linux"/>
+ <meta itemprop="name" content="{{ BRANDING_DISTRONAME }}"/>
</div>
<h3>{{ dev.get_full_name }}{% if prof.latin_name %} ({{ prof.latin_name}}){% endif %}
<a class="headerlink" name="{{ dev.username }}" id="{{ dev.username }}" href="#{{ dev.username }}" title="Permalink">¶</a></h3>
diff --git a/templates/public/donate.html b/templates/public/donate.html
index 301bd1c0..d5e71f57 100644
--- a/templates/public/donate.html
+++ b/templates/public/donate.html
@@ -2,20 +2,20 @@
{% load cache %}
{% load static from staticfiles %}
-{% block title %}Arch Linux - Donate{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Donate{% endblock %}
{% block content %}
{% cache 600 donations secure %}
<div id="donations" class="box">
- <h2>Donate to Arch Linux</h2>
+ <h2>Donate to {{ BRANDING_DISTRONAME }}</h2>
- <p>Arch Linux survives because of the tireless efforts of many people in
+ <p>{{ BRANDING_DISTRONAME }} survives because of the tireless efforts of many people in
the community and the core development circle. None of us are paid for
our work, and we don't have the personal funds to sustain server costs
ourselves.</p>
- <p>There are many ways to help support Arch Linux. If technical development,
+ <p>There are many ways to help support {{ BRANDING_DISTRONAME }}. If technical development,
documentation, or support aren't your strong points, you could certainly
help us by dropping a few bucks our way.</p>
@@ -23,15 +23,15 @@
<h3>Monetary donations</h3>
- <p>Financial contributions are accepted via <a href="https://co.clickandpledge.com/Default.aspx?WID=47294" title="Donate via Click&amp;Pledge to Arch Linux">Click&amp;Pledge</a>.
- Arch Linux is a member project of the
+ <p>Financial contributions are accepted via <a href="https://co.clickandpledge.com/Default.aspx?WID=47294" title="Donate via Click&amp;Pledge to {{ BRANDING_DISTRONAME }}">Click&amp;Pledge</a>.
+ {{ BRANDING_DISTRONAME }} is a member project of the
<a href="http://www.spi-inc.org/">Software in the Public Interest, Inc.</a>
non-profit corporation. Funds are used for hosting costs, server hardware
upgrades, and more. You are encouraged to learn more about the SPI, as well
as <a href="http://www.spi-inc.org/donations/">how donations work</a>.</p>
<a href="https://co.clickandpledge.com/Default.aspx?WID=47294">
- <img width="210" height="34" src="{% static "click_and_pledge.png" %}" alt="Donate via Click&amp;Pledge to Arch Linux" title="Donate via Click&amp;Pledge to Arch Linux"/>
+ <img width="210" height="34" src="{% static "click_and_pledge.png" %}" alt="Donate via Click&amp;Pledge to {{ BRANDING_DISTRONAME }}" title="Donate via Click&amp;Pledge to {{ BRANDING_DISTRONAME }}"/>
</a>
<h3>Commercial sponsors and contributions</h3>
@@ -44,7 +44,7 @@
title="velocity network"><img width="252" height="58" src="{% static "vnet_button.png" %}" class="sponsor-btn-vnet"
title="" alt="velocity network - it's about time" /></a>
- <p>We would also like to thank Kartenzia for sponsoring a dedicated Arch Linux Server.
+ <p>We would also like to thank Kartenzia for sponsoring a dedicated {{ BRANDING_DISTRONAME }} Server.
Kartenzia.de is a new Start-Up based in Germany and specializes in
eco-friendly invitations like <a href="http://www.kartenzia.de/weihnachtskarten/">Weihnachten</a>.</p>
diff --git a/templates/public/download.html b/templates/public/download.html
index 9116816d..dcf93d70 100644
--- a/templates/public/download.html
+++ b/templates/public/download.html
@@ -3,11 +3,11 @@
{% load static from staticfiles %}
{% load flags %}
-{% block title %}Arch Linux - Downloads{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Downloads{% endblock %}
{% block head %}
<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />
-<link rel="alternate" type="application/rss+xml" title="Arch Linux Releases" href="/feeds/releases/" />
+<link rel="alternate" type="application/rss+xml" title="{{ BRANDING_DISTRONAME }} Releases" href="/feeds/releases/" />
{% endblock %}
{% block navbarclass %}anb-download{% endblock %}
@@ -15,26 +15,26 @@
{% block content %}
<div id="arch-downloads" class="box">
- <h2>Arch Linux Downloads</h2>
+ <h2>{{ BRANDING_DISTRONAME }} Downloads</h2>
<h3>Release Info</h3>
<p>The image can be burned to a CD, mounted as an ISO file,
or be directly written to a USB stick using a utility like `dd`. It
- is intended for new installations only; an existing Arch Linux system
+ is intended for new installations only; an existing {{ BRANDING_DISTRONAME }} system
can always be updated with `pacman -Syu`.</p>
<ul>
{% if release.version %}<li><strong>Current Release:</strong> {{ release.version }}</li>{% endif %}
{% if release.kernel_version %}<li><strong>Included Kernel:</strong> {{ release.kernel_version }}</li>{% endif %}
{% if release.torrent_data %}<li><strong>ISO Size:</strong> {{ release.torrent.file_length|filesizeformat }}</li>{% endif %}
- <li><a href="https://wiki.archlinux.org/index.php/Installation_guide">Installation Guide</a></li>
+ <li><a href="{% wiki_url 'Installation_guide' %}">Installation Guide</a></li>
<li><strong>Resources:</strong>
<ul>
<li><a href="https://bugs.archlinux.org/index.php?project=6"
- title="Arch Linux Bugtracker:Release Engineering">Bug Tracker</a></li>
- <li><a href="https://mailman.archlinux.org/mailman/listinfo/arch-releng"
- title="Arch Linux Release Engineering mailing list">Mailing List</a></li>
+ title="{{ BRANDING_DISTRONAME }} Bugtracker:Release Engineering">Bug Tracker</a></li>
+ <li><a href="{{ MAILMAN_BASE_URL }}/mailman/listinfo/arch-releng"
+ title="{{ BRANDING_DISTRONAME }} Release Engineering mailing list">Mailing List</a></li>
</ul>
</li>
</ul>
@@ -69,7 +69,7 @@
<p>If you have a wired connection, you can boot the latest release directly over the network.</p>
<ul>
<li><a href="{% url 'releng-netboot-info' %}"
- title="Arch Linux Netboot">Arch Linux Netboot</a></li>
+ title="{{ BRANDING_DISTRONAME }} Netboot">{{ BRANDING_DISTRONAME }} Netboot</a></li>
</ul>
<h3>HTTP Direct Downloads</h3>
@@ -106,8 +106,8 @@
</div>
{% endcache %}
- <p>If you want to become an Official Arch Linux Mirror please follow the
- instructions listed <a href="https://wiki.archlinux.org/index.php/DeveloperWiki:NewMirrors">here</a>.</p>
+ <p>If you want to become an Official {{ BRANDING_DISTRONAME }} Mirror please follow the
+ instructions listed <a href="{% wiki_url 'DeveloperWiki:NewMirrors' %}">here</a>.</p>
</div>
{% endblock %}
diff --git a/templates/public/feeds.html b/templates/public/feeds.html
index 5e6fd7c5..e72cf616 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 %}
<div id="rss-feeds" class="box">
@@ -12,8 +12,8 @@
<h3>News and Activity Feeds</h3>
- <p>Grab the <a href="/feeds/news/" class="rss" title="Arch Linux news feed">news item feed</a>
- to keep up-to-date with the latest news from the Arch Linux development staff.</p>
+ <p>Grab the <a href="/feeds/news/" class="rss" title="{{ BRANDING_DISTRONAME }} news feed">news item feed</a>
+ to keep up-to-date with the latest news from the {{ BRANDING_DISTRONAME }} development staff.</p>
<p>The <a href="https://wiki.archlinux.org/index.php?title=Special:RecentChanges&amp;feed=rss"
title="ArchWiki Recent Changes feed" class="rss">Arch Wiki: Recent changes feed</a>
@@ -23,7 +23,7 @@
<h3>Package Feeds</h3>
<p>If you are interested in <a href="/feeds/packages/" class="rss"
- title="Arch Linux package updates feed">all package updates</a>,
+ title="{{ BRANDING_DISTRONAME }} package updates feed">all package updates</a>,
then grab this feed. Note that when a package is updated for multiple
architectures, you will see each individual update show up here.
Alternatively, you can select a packages feed from the below table that is
@@ -67,13 +67,13 @@
<h3>Release Feed</h3>
- <p>Grab the <a href="/feeds/releases/" class="rss" title="Arch Linux release feed">ISO release feed</a>
+ <p>Grab the <a href="/feeds/releases/" class="rss" title="{{ BRANDING_DISTRONAME }} release feed">ISO release feed</a>
if you want to help seed the ISO release torrents as they come out.</p>
<h3>Development Feeds</h3>
<p>Subscribe to any of the following to track bug tickets and feature
- requests from the <a href="https://bugs.archlinux.org/" title="Arch Linux Bugs">Arch Linux Bugtracker</a>:</p>
+ requests from the <a href="https://bugs.archlinux.org/" title="{{ BRANDING_DISTRONAME }} Bugs">{{ BRANDING_DISTRONAME }} Bugtracker</a>:</p>
<table class="pretty2">
<thead>
@@ -91,7 +91,7 @@
<td><a href="https://bugs.archlinux.org/feed.php?feed_type=rss2&amp;topic=edit&amp;project=0" class="rss">Feed</a></td>
<td><a href="https://bugs.archlinux.org/feed.php?feed_type=rss2&amp;topic=clo&amp;project=0" class="rss">Feed</a></td>
</tr><tr>
- <td>Arch Linux</td>
+ <td>{{ BRANDING_DISTRONAME }}</td>
<td><a href="https://bugs.archlinux.org/feed.php?feed_type=rss2&amp;project=1" class="rss">Feed</a></td>
<td><a href="https://bugs.archlinux.org/feed.php?feed_type=rss2&amp;topic=edit&amp;project=1" class="rss">Feed</a></td>
<td><a href="https://bugs.archlinux.org/feed.php?feed_type=rss2&amp;topic=clo&amp;project=1" class="rss">Feed</a></td>
diff --git a/templates/public/index.html b/templates/public/index.html
index 2eba1fdb..5c71496d 100644
--- a/templates/public/index.html
+++ b/templates/public/index.html
@@ -3,8 +3,8 @@
{% load static from staticfiles %}
{% 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="Arch Linux Package Updates" href="/feeds/packages/" />
+<link rel="alternate" type="application/rss+xml" title="{{ BRANDING_DISTRONAME }} News Updates" href="/feeds/news/" />
+<link rel="alternate" type="application/rss+xml" title="{{ BRANDING_DISTRONAME }} Package Updates" href="/feeds/packages/" />
{% endblock %}
{% block content_left %}
@@ -12,7 +12,7 @@
<div id="intro" class="box">
<h2>A simple, lightweight distribution</h2>
- <p>You've reached the website for <strong>Arch Linux</strong>, a
+ <p>You've reached the website for <strong>{{ BRANDING_DISTRONAME }}</strong>, a
lightweight and flexible Linux® distribution that tries to Keep It
Simple.</p>
@@ -25,14 +25,14 @@
<p>Our strong community is diverse and helpful, and we pride ourselves
on the range of skillsets and uses for Arch that stem from it. Please
check out our <a href="https://bbs.archlinux.org/" title="Arch Forums">forums</a>
- and <a href="https://mailman.archlinux.org/mailman/listinfo/"
+ and <a href="{{ MAILMAN_BASE_URL }}/mailman/listinfo/"
title="Arch Mailing Lists">mailing lists</a>
to get your feet wet. Also glance through our <a href="https://wiki.archlinux.org/"
title="Arch Wiki">wiki</a>
if you want to learn more about Arch.</p>
<p class="readmore"><a href="{% url 'page-about' %}"
- title="Learn more about Arch Linux">Learn more...</a></p>
+ title="Learn more about {{ BRANDING_DISTRONAME }}">Learn more...</a></p>
</div>
<div id="news">
@@ -111,25 +111,25 @@
<ul>
<li><a href="https://wiki.archlinux.org/"
title="Community documentation">Wiki</a></li>
- <li><a href="https://wiki.archlinux.org/index.php/Installation_guide"
+ <li><a href="{% wiki_url 'Installation_guide' %}"
title="Installation guide">Installation Guide</a></li>
</ul>
<h4>Community</h4>
<ul>
- <li><a href="https://mailman.archlinux.org/mailman/listinfo/"
+ <li><a href="{{ MAILMAN_BASE_URL }}/mailman/listinfo/"
title="Community and developer mailing lists">Mailing Lists</a></li>
- <li><a href="https://wiki.archlinux.org/index.php/IRC_channels"
+ <li><a href="{% wiki_url 'IRC_channels' %}"
title="Official and regional IRC communities">IRC Channels</a></li>
<li><a href="https://planet.archlinux.org/"
title="Arch in the blogosphere">Planet Arch</a></li>
- <li><a href="https://wiki.archlinux.org/index.php/International_communities"
+ <li><a href="{% wiki_url 'International_communities' %}"
title="Arch communities in your native language">International Communities</a></li>
</ul>
<h4>Support</h4>
<ul>
- <li><a href="{% url 'page-donate' %}" title="Help support Arch Linux">Donate</a></li>
+ <li><a href="{% url 'page-donate' %}" title="Help support {{ BRANDING_DISTRONAME }}">Donate</a></li>
<li><a href="http://schwag.archlinux.ca/"
title="USB keys, jewellery, case badges">Arch Schwag</a></li>
<li><a href="http://www.zazzle.com/archlinux*"
@@ -156,7 +156,7 @@
title="Official Arch projects (git)">Projects in Git</a></li>
<li><a href="{% url 'page-svn' %}"
title="View SVN entries for packages">SVN Repositories</a></li>
- <li><a href="https://wiki.archlinux.org/index.php/DeveloperWiki"
+ <li><a href="{% wiki_url 'DeveloperWiki' %}"
title="Developer Wiki articles">Developer Wiki</a></li>
<li><a href="/groups/"
title="View the available package groups">Package Groups</a></li>
@@ -181,8 +181,8 @@
<h4>More Resources</h4>
<ul>
- <li><a href="https://wiki.archlinux.org/index.php/Arch_Linux_press_coverage"
- title="Arch Linux in the media">Press Coverage</a></li>
+ <li><a href="{% wiki_url 'Arch_Linux_press_coverage' %}"
+ title="{{ BRANDING_DISTRONAME }} in the media">Press Coverage</a></li>
<li><a href="{% url 'page-art' %}" title="Arch logos and other artwork for promotional use">Logos &amp; Artwork</a></li>
<li><a href="{% url 'news-list' %}" title="News Archives">News Archives</a></li>
<li><a href="/feeds/" title="Various RSS Feeds">RSS Feeds</a></li>
@@ -191,7 +191,7 @@
<div id="home-donate-button" class="widget">
<a href="https://co.clickandpledge.com/Default.aspx?WID=47294">
- <img width="210" height="34" src="{% static "click_and_pledge.png" %}" alt="Donate via Click&amp;Pledge to Arch Linux" title="Donate via Click&amp;Pledge to Arch Linux"/>
+ <img width="210" height="34" src="{% static "click_and_pledge.png" %}" alt="Donate via Click&amp;Pledge to {{ BRANDING_DISTRONAME }}" title="Donate via Click&amp;Pledge to {{ BRANDING_DISTRONAME }}"/>
</a>
</div>
diff --git a/templates/public/keys.html b/templates/public/keys.html
index 37d5b232..856c6582 100644
--- a/templates/public/keys.html
+++ b/templates/public/keys.html
@@ -2,13 +2,13 @@
{% load static from staticfiles %}
{% load pgp %}
-{% block title %}Arch Linux - Master Signing Keys{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Master Signing Keys{% endblock %}
{% block content %}
<div id="signing-keys" class="box">
<h2>Master Signing Keys</h2>
- <p>This page lists the Arch Linux Master Keys. This is a distributed set of
+ <p>This page lists the {{ BRANDING_DISTRONAME }} Master Keys. This is a distributed set of
keys that are seen as "official" signing keys of the distribution. Each key
is held by a different developer, and a revocation certificate for the key
is held by a different developer. Thus, no one developer has absolute hold
@@ -63,7 +63,7 @@
personal key of the developer is signed by the given master key. A 'No'
indicates it has not been signed; however, this does not necessarily mean
the key should not be trusted.</p>
- <p>All official Arch Linux developers and trusted users should have their
+ <p>All official {{ BRANDING_DISTRONAME }} developers and trusted users should have their
key signed by at least three master keys if they are responsible for
packaging software in the repositories. This is in accordance with the PGP
<em>web of trust</em> concept. If a user is willing to marginally trust all
diff --git a/templates/public/svn.html b/templates/public/svn.html
index 0d067098..020a00bf 100644
--- a/templates/public/svn.html
+++ b/templates/public/svn.html
@@ -1,11 +1,11 @@
{% extends "base.html" %}
-{% block title %}Arch Linux - SVN{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - SVN{% endblock %}
{% block content %}
<div class="box">
<h2 class="title">SVN Repositories</h2>
<p>
The PKGBUILD files can be fetched via the ABS utility. To learn more
- about ABS, see <a href="https://wiki.archlinux.org/index.php/ABS">the ABS wiki page</a>.
+ about ABS, see <a href="{% wiki_url 'ABS' %}">the ABS wiki page</a>.
</p>
<p>The SVN repositories have been cloned into git repositories and can be
viewed via the cgit interface.
diff --git a/templates/public/userlist.html b/templates/public/userlist.html
index b49c5de2..dffd0a17 100644
--- a/templates/public/userlist.html
+++ b/templates/public/userlist.html
@@ -2,14 +2,14 @@
{% load static from staticfiles %}
{% load cache %}
-{% block title %}Arch Linux - {{ group.name }}{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - {{ group.name }}{% endblock %}
{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% endblock %}
{% block content %}
{% cache 600 dev-tu-profiles group.name %}
<div id="dev-tu-profiles" class="box">
- <h2>Arch Linux {{ group.name }}</h2>
+ <h2>{{ BRANDING_DISTRONAME }} {{ group.name }}</h2>
<p>{{ group.description }}</p>
diff --git a/templates/registration/login.html b/templates/registration/login.html
index b5894319..ff360de3 100644
--- a/templates/registration/login.html
+++ b/templates/registration/login.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load static from staticfiles %}
-{% 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 84bbff94..5c296c5d 100644
--- a/templates/registration/logout.html
+++ b/templates/registration/logout.html
@@ -1,6 +1,6 @@
{% 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">
diff --git a/templates/releng/add.html b/templates/releng/add.html
index d060395d..3b289ea1 100644
--- a/templates/releng/add.html
+++ b/templates/releng/add.html
@@ -1,12 +1,12 @@
{% extends "base.html" %}
-{% block title %}Arch Linux - Test Result Entry{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Test Result Entry{% endblock %}
{% block content %}
<div class="box">
<h2>Arch Releng Testbuild Feedback Entry</h2>
- <p>This page allows you to submit feedback after testing an Arch Linux installation
+ <p>This page allows you to submit feedback after testing an {{ BRANDING_DISTRONAME }} installation
using a release engineering testbuild. Mark all the options you used during the
installation; at the end you can specify whether everything went OK. Be
sure to only denote a successful install after having checked the
diff --git a/templates/releng/archlinux.ipxe b/templates/releng/archlinux.ipxe
index 4945868c..81767f32 100644
--- a/templates/releng/archlinux.ipxe
+++ b/templates/releng/archlinux.ipxe
@@ -15,14 +15,14 @@ set extrabootoptions ip=dhcp net.ifnames=0
set countrycode
:main
-menu Arch Linux Netboot
+menu {{ BRANDING_DISTRONAME }} Netboot
item --gap Settings
item set_architecture Architecture: ${bootarch}
item set_release Release: ${release}
isset ${mirrorurl} && item set_mirror Mirror: ${mirrorurl} || item set_mirror Choose a mirror
item set_options Boot options: ${extrabootoptions}
item
-isset ${mirrorurl} && item boot Boot Arch Linux || item --gap Boot Arch Linux
+isset ${mirrorurl} && item boot Boot {{ BRANDING_DISTRONAME }} || item --gap Boot {{ BRANDING_DISTRONAME }}
item shell Drop to iPXE shell
item reboot Reboot
item exit Exit iPXE
@@ -41,7 +41,7 @@ reboot
exit
:set_architecture
-menu Arch Linux Netboot: Select Architecture
+menu {{ BRANDING_DISTRONAME }} Netboot: Select Architecture
item back back
item
item --gap Available architectures:
@@ -53,7 +53,7 @@ set bootarch ${selected}
goto main
:set_release
-menu Arch Linux Netboot: Select Release
+menu {{ BRANDING_DISTRONAME }} Netboot: Select Release
item back back
item
item --gap Available releases:
@@ -68,7 +68,7 @@ goto main
goto select_mirror_country
:select_mirror_country
-menu Arch Linux Netboot: Select Mirror
+menu {{ BRANDING_DISTRONAME }} Netboot: Select Mirror
item back back
item
item --gap Custom Configuration:
@@ -107,7 +107,7 @@ set countryname Global
:select_mirror_url_{{ mirrorgroup.grouper }}
set countryname {{ mirrorgroup.grouper.name }}
{% endif %}
-menu Arch Linux Netboot: Select Mirror
+menu {{ BRANDING_DISTRONAME }} Netboot: Select Mirror
item back back
item
item --gap Available mirrors in ${countryname}
@@ -124,7 +124,7 @@ echo -n Boot options: ${} && read extrabootoptions ||
goto main
:boot
-echo Booting Arch Linux ${bootarch} ${release} from ${mirrorurl}
+echo Booting {{ BRANDING_DISTRONAME }} ${bootarch} ${release} from ${mirrorurl}
echo
kernel ${mirrorurl}iso/${release}/arch/boot/${bootarch}/vmlinuz || goto failed_download
imgverify vmlinuz ${mirrorurl}iso/${release}/arch/boot/${bootarch}/vmlinuz.ipxe.sig || goto failed_verify
diff --git a/templates/releng/netboot.html b/templates/releng/netboot.html
index 36404588..1b87244b 100644
--- a/templates/releng/netboot.html
+++ b/templates/releng/netboot.html
@@ -1,20 +1,20 @@
{% extends "base.html" %}
{% load staticfiles %}
-{% block title %}Arch Linux - Netboot{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Netboot{% endblock %}
{% block content %}
<div id="arch-netboot" class="box">
-<h2>Arch Linux Netboot</h2>
+<h2>{{ BRANDING_DISTRONAME }} Netboot</h2>
<h3>About Netboot</h3>
-<p>Netboot images are small (&lt;1MB) images that can be used to download the latest Arch Linux release on the fly upon system boot.
+<p>Netboot images are small (&lt;1MB) images that can be used to download the latest {{ BRANDING_DISTRONAME }} release on the fly upon system boot.
It is unnecessary to update the netboot image, the newest release will be available automatically.</p>
<p>Netboot uses customized <a href="http://ipxe.org">iPXE</a> builds.
-The Linux kernel, initramfs and squashfs files for the live system are downloaded from an Arch Linux mirror.
+The Linux kernel, initramfs and squashfs files for the live system are downloaded from an {{ BRANDING_DISTRONAME }} mirror.
The integrity of all downloaded files is verified with cryptographic signatures.</p>
<h3>Requirements</h3>
@@ -48,7 +48,7 @@ For details, check out the <a href="https://aur.archlinux.org/packages/ipxe-netb
<h3>More information</h3>
-<p>For detailed usage instructions, check out the <a href="https://wiki.archlinux.org/index.php/Netboot">netboot wiki page</a>.
+<p>For detailed usage instructions, check out the <a href="{% wiki_url 'Netboot' %}">netboot wiki page</a>.
</div>
{% endblock %}
diff --git a/templates/releng/release_detail.html b/templates/releng/release_detail.html
index 11155c0c..97017600 100644
--- a/templates/releng/release_detail.html
+++ b/templates/releng/release_detail.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load static %}
-{% block title %}Arch Linux - Release: {{ release.version }}{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Release: {{ release.version }}{% endblock %}
{% block content %}
<div class="release box">
diff --git a/templates/releng/release_list.html b/templates/releng/release_list.html
index fa15bcb9..3092ddc9 100644
--- a/templates/releng/release_list.html
+++ b/templates/releng/release_list.html
@@ -2,24 +2,24 @@
{% load cycle from future %}
{% load static from staticfiles %}
-{% block title %}Arch Linux - Releases{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Releases{% endblock %}
{% block head %}
-<link rel="alternate" type="application/rss+xml" title="Arch Linux News Updates" href="/feeds/releases/" />
+<link rel="alternate" type="application/rss+xml" title="{{ BRANDING_DISTRONAME }} News Updates" href="/feeds/releases/" />
{% endblock %}
{% block content %}
<div id="release-list" class="box">
<h2>Releases</h2>
- <p>This is a list of ISO releases made by the Arch Linux release
+ <p>This is a list of ISO releases made by the {{ BRANDING_DISTRONAME }} release
engineering team. These are typically done on a monthly cadence, containing
the latest kernel and base packages from the package repositories. Click
the version of each release to read any additional notes or details about
each release.</p>
<p>Torrents and magnet URIs are available to download the releases.
Releases listed as not available may still be seeded by peers, but are no
- longer registered via the official Arch Linux torrent tracker. We always
+ longer registered via the official {{ BRANDING_DISTRONAME }} torrent tracker. We always
recommend running the latest available release.</p>
<table id="release-table" class="results">
diff --git a/templates/releng/results.html b/templates/releng/results.html
index 59d8351d..72206325 100644
--- a/templates/releng/results.html
+++ b/templates/releng/results.html
@@ -1,6 +1,6 @@
{% extends "base.html" %}
-{% block title %}Arch Linux - Release Engineering Testbuild Results{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Release Engineering Testbuild Results{% endblock %}
{% block content %}
<div class="box">
@@ -17,7 +17,7 @@
the <a href="{% url 'releng-iso-overview' %}">overview</a>.</p>
<p>For more information, see the <a
- href="https://wiki.archlinux.org/index.php/DeveloperWiki:releng_testimages_feedback">documentation
+ href="{% wiki_url 'DeveloperWiki:releng_testimages_feedback' %}">documentation
on the wiki</a>.</p>
<p>All ISOs referenced on this page are available from
diff --git a/templates/releng/thanks.html b/templates/releng/thanks.html
index 2462dafd..b772fad3 100644
--- a/templates/releng/thanks.html
+++ b/templates/releng/thanks.html
@@ -1,6 +1,6 @@
{% extends "base.html" %}
-{% block title %}Arch Linux - Feedback - Thanks!{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Feedback - Thanks!{% endblock %}
{% block content %}
<div class="box">
diff --git a/templates/sitemaps/news_sitemap.xml.jinja b/templates/sitemaps/news_sitemap.xml.jinja
index 97dd17b5..cbd86578 100644
--- a/templates/sitemaps/news_sitemap.xml.jinja
+++ b/templates/sitemaps/news_sitemap.xml.jinja
@@ -6,7 +6,7 @@
{% if url.changefreq %}<changefreq>{{ url.changefreq }}</changefreq>{% endif %}
{% if url.priority %}<priority>{{ url.priority }}</priority>{% endif %}
<news:news>
- <news:publication><news:name>Arch Linux News</news:name><news:language>en</news:language></news:publication>
+ <news:publication><news:name>{{ BRANDING_DISTRONAME }} News</news:name><news:language>en</news:language></news:publication>
{% if url.item.postdate %}<news:publication_date>{{ url.item.postdate|date("c") }}</news:publication_date>{% endif %}
{% if url.item.title %}<news:title>{{ url.item.title }}</news:title>{% endif %}
</news:news>
diff --git a/templates/todolists/list.html b/templates/todolists/list.html
index 983a49f0..5cfd6a02 100644
--- a/templates/todolists/list.html
+++ b/templates/todolists/list.html
@@ -2,7 +2,7 @@
{% load cycle from future %}
{% load static from staticfiles %}
-{% block title %}Arch Linux - Todo Lists{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Todo Lists{% endblock %}
{% block content %}
<div id="dev-todo" class="box">
diff --git a/templates/todolists/todolist_confirm_delete.html b/templates/todolists/todolist_confirm_delete.html
index 5545462f..6d7ec0ab 100644
--- a/templates/todolists/todolist_confirm_delete.html
+++ b/templates/todolists/todolist_confirm_delete.html
@@ -1,5 +1,5 @@
{% extends "base.html" %}
-{% block title %}Arch Linux - Delete Todo List: {{object.name}}{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Delete Todo List: {{object.name}}{% endblock %}
{% block content %}
<div id="dev-todo-delete" class="box">
diff --git a/templates/todolists/view.html b/templates/todolists/view.html
index ec203b39..4ae25fb0 100644
--- a/templates/todolists/view.html
+++ b/templates/todolists/view.html
@@ -4,7 +4,7 @@
{% load package_extras %}
{% load todolists %}
-{% block title %}Arch Linux - Todo: {{ list.name }}{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Todo: {{ list.name }}{% endblock %}
{% block content %}
<div id="dev-todo-details" class="box">
diff --git a/templates/visualize/index.html b/templates/visualize/index.html
index 446bdebe..e091c761 100644
--- a/templates/visualize/index.html
+++ b/templates/visualize/index.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% load static from staticfiles %}
-{% block title %}Arch Linux - Visualizations{% endblock %}
+{% block title %}{{ BRANDING_DISTRONAME }} - Visualizations{% endblock %}
{% block content %}
<div class="box">