projects/en/sidenav.wmi
2a9aaa80
 #!/usr/bin/wml
 
 ## translation metadata
 # Revision: $Revision: 0 $
 # Translation-Priority: 2-medium
 
 # this structure defines the side nav bar for the /about pages
 # and is the input for include/side.wmi
 
 # fields:
 #
 # name - the $WML_SRC_BASENAME of the file. It should uniquely identify the
 # page because at build-time it is used to determine what view of the
 # navigation menu to generate
 #
 # url - the path to the wml page, as used the the <page> tag. This tag ensures
 # that links will point to the current language if supported, and alternately
 # the english version 
 #
 # txt - the link text to be displayed. Different translations will
 # need to supply alternate txt 
  
 <:
   my $sidenav;
   $sidenav = [
e10a28f0
       {'url'  => 'projects/projects',
        'txt'  => 'Software &amp; Services',
2a9aaa80
        'subelements' => [
2761a707
           {'url'  => 'torbutton/index',
2a9aaa80
            'txt'  => 'TorButton',
            'subelements' => [
092e1ed5
               {'url' => 'torbutton/torbutton-options',
2a9aaa80
                'txt' => 'TorButton Options',
               },
092e1ed5
               {'url' => 'torbutton/torbutton-faq',
2a9aaa80
                'txt' => 'TorButton FAQ',
               },
b8976b45
               {'url'  => 'https://check.torproject.org',
                'txt'  => 'TorCheck',
               }, 
               {'url'  => 'projects/sampleproject',
                'txt'  => 'SampleProject',
               }]
           }]
         }];
2a9aaa80
 :>