summaryrefslogtreecommitdiffstats
path: root/templates/public/projects.html
diff options
context:
space:
mode:
authorIsmael Carnales <icarnales@gmail.com>2009-10-30 19:56:21 +0100
committerIsmael Carnales <icarnales@gmail.com>2009-11-10 01:24:37 +0100
commit79f00ef686e0597cb197ed67ba1462aa60a530bb (patch)
treefa27253b023f1cd6ec9f1d3fd79d0ee6bd727aaa /templates/public/projects.html
parentce662e0e0cdb66a7425bfc55bc7342cb152d5e4b (diff)
downloadarchweb-79f00ef686e0597cb197ed67ba1462aa60a530bb.tar.gz
archweb-79f00ef686e0597cb197ed67ba1462aa60a530bb.tar.xz
"imported" public app files from archweb_pub
Diffstat (limited to 'templates/public/projects.html')
-rw-r--r--templates/public/projects.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/templates/public/projects.html b/templates/public/projects.html
new file mode 100644
index 0000000..c6ff271
--- /dev/null
+++ b/templates/public/projects.html
@@ -0,0 +1,28 @@
+{% 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 projects %}
+ <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 %}
+