summaryrefslogtreecommitdiff
path: root/templates/public
diff options
context:
space:
mode:
Diffstat (limited to 'templates/public')
-rw-r--r--templates/public/about.html2
-rw-r--r--templates/public/art.html10
-rw-r--r--templates/public/blank.html2
-rw-r--r--templates/public/developer_list.html2
-rw-r--r--templates/public/donate.html4
-rw-r--r--templates/public/download.html23
-rw-r--r--templates/public/feeds.html24
-rw-r--r--templates/public/index.html52
-rw-r--r--templates/public/keys.html6
-rw-r--r--templates/public/svn.html10
-rw-r--r--templates/public/userlist.html4
11 files changed, 71 insertions, 68 deletions
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 %}
<div class="box">
<h2 class="title">About Arch Linux</h2>
diff --git a/templates/public/art.html b/templates/public/art.html
index afab5498..40fd9bad 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
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..2bb2a53e 100644
--- a/templates/public/donate.html
+++ b/templates/public/donate.html
@@ -2,13 +2,13 @@
{% 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_SHORTNAME }}</h2>
<p>Arch Linux survives because of the tireless efforts of many people in
the community and the core development circle. None of us are paid for
diff --git a/templates/public/download.html b/templates/public/download.html
index 9116816d..c0251d2f 100644
--- a/templates/public/download.html
+++ b/templates/public/download.html
@@ -2,12 +2,13 @@
{% load cache %}
{% load static from staticfiles %}
{% load flags %}
+{% load wiki %}
-{% 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,25 +16,25 @@
{% 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"
+ <li><a href="{{ MAILMAN_BASE_URL }}/mailman/listinfo/arch-releng"
title="Arch Linux Release Engineering mailing list">Mailing List</a></li>
</ul>
</li>
@@ -45,9 +46,9 @@
<div class="article-content">{{ release.info_html }}</div>
{% endif %}
- <h3>Existing Arch Users</h3>
+ <h3>Existing {{BRANDING_SHORTNAME}} Users</h3>
- <p>If you are an existing Arch user, there is no need to download a new ISO
+ <p>If you are an existing {{BRANDING_SHORTNAME}} user, there is no need to download a new ISO
to update your existing system. You may be looking for
<a href="{% url 'mirrorlist' %}">an updated mirrorlist</a> instead.</p>
@@ -69,7 +70,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 +107,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..9936944e 100644
--- a/templates/public/feeds.html
+++ b/templates/public/feeds.html
@@ -1,29 +1,29 @@
-{% extends "base.html" %}
-{% block title %}Arch Linux - RSS Feeds{% endblock %}
+{% extends "base.html" %}{% load wiki %}
+{% block title %}{{ BRANDING_DISTRONAME }} - RSS Feeds{% endblock %}
{% block content %}
<div id="rss-feeds" class="box">
<h2>RSS Feeds</h2>
- <p>Several RSS feeds are available for consumption from the Arch website.
+ <p>Several RSS feeds are available for consumption from the {{ BRANDING_SHORTNAME }} website.
The majority of these are package-related and allow feeds to be customized
for the updates you care about.</p>
<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>
- is also available to track document changes from the <a href="https://wiki.archlinux.org/"
- title="Arch Wiki community documentation">Arch Wiki</a>.</p>
+ <p>The <a href="{% wiki_url 'Special:RecentChanges?feed=rss' %}"
+ title="{{ BRANDING_WIKINAME }} Recent Changes feed" class="rss">{{ BRANDING_WIKINAME }}: Recent changes feed</a>
+ is also available to track document changes from the <a href="{% wiki_url %}"
+ title="{{ BRANDING_WIKINAME }} community documentation">{{ BRANDING_WIKINAME }}</a>.</p>
<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="{{BUGTRACKER_URL}}" title="{{BRANDING_DISTRONAME}} Bugs">{{BRANDING_DISTRONAME}} Bugtracker</a>:</p>
<table class="pretty2">
<thead>
diff --git a/templates/public/index.html b/templates/public/index.html
index fdb136cf..a1dda065 100644
--- a/templates/public/index.html
+++ b/templates/public/index.html
@@ -1,10 +1,11 @@
{% extends "base.html" %}
{% load cache %}
{% load static from staticfiles %}
+{% load wiki %}
{% 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_DISRONAME }} News Updates" href="/feeds/news/" />
+<link rel="alternate" type="application/rss+xml" title="{{ BRANDING_DISRONAME }} Package Updates" href="/feeds/packages/" />
{% endblock %}
{% block content_left %}
@@ -12,7 +13,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 +26,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/"
- 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>
+ and <a href="{{ MAILMAN_BASE_URL }}/mailman/listinfo/"
+ title="{{ BRANDING_SHORTNAME }} Mailing Lists">mailing lists</a>
+ to get your feet wet. Also glance through our <a href="{% wiki_url %}"
+ title="{{BRANDING_WIKINAME}}">wiki</a>
+ if you want to learn more about {{BRANDING_SHORTNAME}}.</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">
@@ -41,7 +42,7 @@
<span class="arrow"></span>
</h3>
- <a href="/feeds/news/" title="Arch News RSS Feed"
+ <a href="/feeds/news/" title="{{ BRANDING_SHORTNAME }} News RSS Feed"
class="rss-icon"><img width="16" height="16" src="{% static "rss.png" %}" alt="RSS Feed" /></a>
{% for news in news_updates %}{% if forloop.counter0 < 5 %}
@@ -88,7 +89,7 @@
<h3>Recent Updates <span class="more">(<a href="/packages/?sort=-last_update"
title="Browse all of the latest packages">more</a>)</span></h3>
- <a href="/feeds/packages/" title="Arch Package Updates RSS Feed"
+ <a href="/feeds/packages/" title="{{ BRANDING_SHORTNAME }} Package Updates RSS Feed"
class="rss-icon"><img width="16" height="16" src="{% static "rss.png" %}" alt="RSS Feed" /></a>
<table>
@@ -109,29 +110,30 @@
<div id="nav-sidebar" class="widget">
<h4>Documentation</h4>
<ul>
- <li><a href="https://wiki.archlinux.org/"
+ <li><a href="{% wiki_url %}"
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>
- <li><a href="https://wiki.archlinux.org/index.php/Beginners'_guide"
+ <li><a href="{% wiki_url "Beginners'_guide" %}"
title="A good place to start for beginners">Beginners' 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"
- title="Arch communities in your native language">International Communities</a></li>
+ <li><a href="{% wiki_url 'International_communities' %}"
+ title="{{DISTRO_SHORTNAME}} 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*"
@@ -154,11 +156,11 @@
<h4>Development</h4>
<ul>
- <li><a href="https://projects.archlinux.org/"
- title="Official Arch projects (git)">Projects in Git</a></li>
+ <li><a href="{{ PROJECTS_URL }}"
+ title="Official {{BRANDING_SHORTNAME}} 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>
@@ -183,9 +185,9 @@
<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="{% url 'page-art' %}" title="Arch logos and other artwork for promotional use">Logos &amp; Artwork</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="{{ BRANDING_SHORTNAME }} 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>
</ul>
diff --git a/templates/public/keys.html b/templates/public/keys.html
index 37d5b232..f15ec1a9 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_DISTORNAME }} 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..01c2ef80 100644
--- a/templates/public/svn.html
+++ b/templates/public/svn.html
@@ -1,17 +1,17 @@
{% 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.
- <a href="https://projects.archlinux.org/svntogit/packages.git/">All
+ <a href="{{ PROJECTS_URL }}/svntogit/packages.git/">All
packages</a> are available here except for
- <a href="https://projects.archlinux.org/svntogit/community.git/">community
+ <a href="{{ PROJECTS_URL }}/svntogit/community.git/">community
and multilib</a> which are available in a different repository.</p>
<p>
You can also get individual PKGBUILDs directly from SVN. This can be
@@ -31,7 +31,7 @@ cd community
svn update &lt;your-package-name&gt;</pre>
<p>
- Visit <a href="https://wiki.archlinux.org/index.php?title=Getting_PKGBUILDS_From_SVN">the wiki</a>
+ Visit <a href="{% wiki_url 'Getting_PKGBUILDS_From_SVN' %}">the wiki</a>
for more tips on checking out and updating svn PKGBUILDs.
</p>
diff --git a/templates/public/userlist.html b/templates/public/userlist.html
index b49c5de2..d49a1539 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>