18caf4611f3113d79f3c0a9704f713d44ae639a7
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

1) #!/usr/bin/env wml
2)     <div id="footer">
3)     	<div class="onion"><img src="$(IMGROOT)/onion.jpg" alt="Tor" /></div>
4)       <div class="about">
5)       	<p>"Tor" and the "Onion Logo" are registered trademarks of <a href="#">The Tor Project, Inc.</a> Content on this site is licensed under a <a href="#">Creative Commons Attribution 3.0 United States License</a>, unless otherwise noted.</p>
6)         # This will grab the date from svn info but formatting is tedious
7)        	# REQUIRES svn for this to work
8)         <p>
9)         <:{
10)           my $svninfo = `svn info`;
11)           if ($svninfo =~ m/Last Changed Date: (\d{4}-\d{2}-\d{2})\s(\d{2}:\d{2}:\d{2})\s(.*)\s\((.*)\)/) {
12)             my $modifydate = "$4 $2 $3";
13)             # remove commas from date
14)             $modifydate =~ s/,//;
15)             print 'Last modified: '.$modifydate."\n";
16)           }
17)         }:>
18)         <br />
19)         <:{
20)           #my $compiledate = `date`;
21)           my $compiledate = `date +"%a %b %d %Y %k:%M:%S %z"`;
22)           print 'Last compiled: '.$compiledate."\n";
23)         }:>
24)         </p>
25)       </div>
26)       <!-- END ABOUT -->
Andrew Lewman comment out the newsletter...

Andrew Lewman authored 13 years ago

27)       <!-- WE HAVE NO NEWSLETTER SO REMOVE THIS
28)       <div class="newsletter">
29)         <form action="">
30)           <input class="textfield" type="text" name="email" value="Sign up for our newsletter! Enter email." onClick="clearDefault(this);" />
31)           <input class="signup" type="submit" name="submit" value="Sign Up" />
32)         </form>
33)       </div>
34)       END NEWSLETTER -->
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

35)       <div class="col first">
36)       	<h4>About Tor</h4>
37)         <ul>
38)           <li><a href="<page about/about>">What Tor Does</a></li>
39)           <li><a href="<page about/torusers>">Users of Tor</a></li>
40)           <li><a href="<page about/corepeople>">Core Tor People</a></li>
41)           <li><a href="<page about/sponsors>">Sponsors</a></li>
42)           <li><a href="<page about/contact>">Contact Us</a></li>
43)         </ul>
44)       </div>
45)       <!-- END COL -->
46)       <div class="col">
47)       	<h4>Get Involved</h4>
48)         <ul>
49)           <li><a href="<page donate/donate>">Donate</a></li>
50)           <li><a href="<page getinvolved/getinvolved>">Mailing List</a></li>
51)           <li><a href="<page docs/running-a-mirror>">Mirrors</a></li>
52)           <li><a href="<page docs/hidden-services>">Hidden Services</a></li>
53)           <li><a href="<page getinvolved/translation>">Translations</a></li>
54)           <li><a href="<page getinvolved/open-positions>">Careers</a></li>
55)         </ul>
56)       </div>
57)       <!-- END COL -->
58)       <div class="col">
59)       	<h4>Documentation</h4>
60)         <ul>
61)           <li><a href="<page docs/tor-manual>">Manuals</a></li>
62)           <li><a href="<page docs/documentation>">Installation Guides</a></li>
63)           <li><a href="<page docs/glossary>">Glossary</a></li>
Andrew Lewman work on the new website a b...

Andrew Lewman authored 13 years ago

64)           <li><a href="https://trac.torproject.org/wiki/">Tor Wiki</a></li>