e10a28f0f977a805d1f80b5a581b34a43cab3c4c
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

1) #!/usr/bin/wml
2) 
3) ## translation metadata
4) # Revision: $Revision: 0 $
5) # Translation-Priority: 2-medium
6) 
7) # this structure defines the side nav bar for the /about pages
8) # and is the input for include/side.wmi
9) 
10) # fields:
11) #
12) # name - the $WML_SRC_BASENAME of the file. It should uniquely identify the
13) # page because at build-time it is used to determine what view of the
14) # navigation menu to generate
15) #
16) # url - the path to the wml page, as used the the <page> tag. This tag ensures
17) # that links will point to the current language if supported, and alternately
18) # the english version 
19) #
20) # txt - the link text to be displayed. Different translations will
21) # need to supply alternate txt 
22)  
23) <:
24)   my $sidenav;
25)   $sidenav = [
Andrew Lewman kill the dead project pages...

Andrew Lewman authored 13 years ago

26)       {'url'  => 'projects/projects',
27)        'txt'  => 'Software &amp; Services',
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

28)        'subelements' => [
Andrew Lewman get the website to build cl...

Andrew Lewman authored 13 years ago

29)           {'url'  => 'torbutton/index',
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

30)            'txt'  => 'TorButton',
31)            'subelements' => [
Andrew Lewman get the website to build cl...

Andrew Lewman authored 13 years ago

32)               {'url' => 'torbutton/torbutton-options',
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

33)                'txt' => 'TorButton Options',
34)               },
Andrew Lewman get the website to build cl...

Andrew Lewman authored 13 years ago

35)               {'url' => 'torbutton/torbutton-faq',
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

36)                'txt' => 'TorButton FAQ',
37)               },
38)           ]},
Andrew Lewman kill the dead project pages...

Andrew Lewman authored 13 years ago

39)           {'url'  => 'https://check.torproject.org',
Andrew Lewman first cut of the new, shiny...

Andrew Lewman authored 13 years ago

40)            'txt'  => 'TorCheck',
41)           }, 
42)           {'url'  => 'projects/sampleproject',
43)            'txt'  => 'SampleProject',
44)           }], 
45) #          {'url'  => 'projects/sampleproject',
46) #           'txt'  => 'TorWeather',
47) #          }, 
48) #          {'url'  => 'projects/sampleproject',
49) #           'txt'  => 'TorWall',
50) #          }, 
51) #          {'url'  => 'projects/sampleproject',
52) #           'txt'  => 'PuppeTor',
53) #          }, 
54) #          {'url'  => 'projects/sampleproject',
55) #           'txt'  => 'TorDNSEL',
56) #          },  
57) #          {'url'  => 'projects/sampleproject',
58) #           'txt'  => 'Pootle',
59) #          },  
60) #          {'url'  => 'projects/sampleproject',
61) #           'txt'  => 'LNET',
62) #          },  
63) #          {'url'  => 'projects/sampleproject',
64) #           'txt'  => 'TorStatus',
65) #          },      
66) #          {'url'  => 'projects/sampleproject',
67) #           'txt'  => 'BridgeDB',
68) #          },  
69) #          {'url'  => 'projects/sampleproject',
70) #           'txt'  => 'TorPerf',
71) #          },   
72) #          {'url'  => 'projects/sampleproject',
73) #           'txt'  => 'BWAuthority',
74) #          },    
75) #          {'url'  => 'projects/sampleproject',
76) #           'txt'  => 'TBB Builds',
77) #          }],
Andrew Lewman kill the dead project pages...

Andrew Lewman authored 13 years ago

78)       }],