summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-03-01 19:04:41 -0600
committerDan McGee <dan@archlinux.org>2010-04-18 23:27:27 -0500
commitec59440262596a03e2b374f96d24e295df56c9b8 (patch)
tree999a6f3bf90ebbedafdff38734c60ece35b2fb87 /templates
parentd9e4a36fc96f7a0dd4b455189ee2ed45db005966 (diff)
downloadarchweb-ec59440262596a03e2b374f96d24e295df56c9b8.tar.gz
archweb-ec59440262596a03e2b374f96d24e295df56c9b8.zip
Remove Arch-Based Projects
Add a link to the wiki instead. Also remove ExternalProject model and associated dealings. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r--templates/public/index.html2
-rw-r--r--templates/public/projects.html28
2 files changed, 1 insertions, 29 deletions
diff --git a/templates/public/index.html b/templates/public/index.html
index 3310cae4..27d74828 100644
--- a/templates/public/index.html
+++ b/templates/public/index.html
@@ -113,7 +113,7 @@
<li><a href="http://wiki.archlinux.org/index.php/IRC_Channels">IRC Channels</a></li>
<li><a href="http://planet.archlinux.org">Planet Arch</a></li>
<li><a href="/static/magazine/">Magazines</a></li>
- <li><a href="/projects/">Arch-Based Projects</a></li>
+ <li><a href="http://wiki.archlinux.org/index.php/Arch_Related_Projects">Arch-Based Projects</a></li>
<li><a href="http://wiki.archlinux.org/index.php/International_Communities">International Communities</a></li>
<li><a href="http://wiki.archlinux.org/index.php/Arch_Linux_Press_Review">Press</a></li>
</ul>
diff --git a/templates/public/projects.html b/templates/public/projects.html
deleted file mode 100644
index 5fd1fa24..00000000
--- a/templates/public/projects.html
+++ /dev/null
@@ -1,28 +0,0 @@
-{% extends "base.html" %}
-{% block title %}Arch Linux - Projects{% endblock %}
-{% block content %}
-<div class="box">
- <h2 class="title">Arch Related Projects</h2>
- <br /><br />
- <p>There are a few Arch-based projects or communities that have sprung up
- over the years. Here's a list of the ones we know about.</p>
- <table cellspacing="20">
- {% for project in project_list %}
- <tr>
- <td><a href="{{project.url}}">{{project.name}}</a></td>
- <td>{{project.description}}</td>
- </tr>
- {% endfor %}
- </table>
- <br />
- <div class="smalltext">
- If you have an Arch related project you would like linked, please open
- a <a href="http://bugs.archlinux.org/">Bug Ticket</a> with the category
- "web site", and a relevant description.<br /> Also please let us know if you
- think any of the projects above is defunct so we can keep it new and
- exciting.
- </div>
-</div>
-<br /><br />
-{% endblock %}
-