aboutsummaryrefslogtreecommitdiffstats
path: root/web/about.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'web/about.cgi')
-rwxr-xr-xweb/about.cgi29
1 files changed, 29 insertions, 0 deletions
diff --git a/web/about.cgi b/web/about.cgi
new file mode 100755
index 000000000..3d0dcc6fa
--- /dev/null
+++ b/web/about.cgi
@@ -0,0 +1,29 @@
+#!/usr/bin/perl -w -I../perllib
+
+# about.cgi:
+# For EHA
+#
+# Copyright (c) 2008 UK Citizens Online Democracy. All rights reserved.
+# Email: matthew@mysociety.org. WWW: http://www.mysociety.org
+#
+# $Id: about.cgi,v 1.6 2008-10-09 18:21:18 matthew Exp $
+
+use strict;
+use Standard -db;
+
+# Main code for index.cgi
+sub main {
+ my $q = shift;
+ print Page::header($q, title=>'About us');
+ print <<ABOUTUS if $q->{site} eq 'emptyhomes';
+<p>The Empty Homes agency is an independent campaigning charity. We are not
+part of government, and have no formal links with local councils although we
+work in cooperation with both. We exist to highlight the waste of empty
+property and work with others to devise and promote sustainable solutions to
+bring empty property back into use. We are based in London but work across
+England. We also work in partnership with other charities across the UK.</p>
+ABOUTUS
+ print Page::footer($q);
+}
+Page::do_fastcgi(\&main);
+