... | ... |
@@ -19,17 +19,9 @@ |
19 | 19 |
<: |
20 | 20 |
my $sidenav; |
21 | 21 |
$sidenav = [ |
22 |
- {'url' => 'getinvolved/getinvolved', |
|
22 |
+ {'url' => 'getinvolved/volunteer', |
|
23 | 23 |
'txt' => 'Get Involved', |
24 | 24 |
'subelements' => [ |
25 |
- {'url' => 'getinvolved/everyone', |
|
26 |
- 'txt' => 'Everyone', |
|
27 |
- }, |
|
28 |
- {'url' => 'getinvolved/technical', |
|
29 |
- 'txt' => 'Technical Users', |
|
30 |
- }, |
|
31 |
- {'url' => 'getinvolved/developers', |
|
32 |
- 'txt' => 'Developers', |
|
33 | 25 |
}] |
34 | 26 |
}, |
35 | 27 |
{'url' => 'donate/donate', |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,39 @@ |
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 |
+# url - the path to the wml page, as used the the <page> tag. This tag ensures |
|
13 |
+# that links will point to the current language if supported, and alternately |
|
14 |
+# the english version |
|
15 |
+# |
|
16 |
+# txt - the link text to be displayed. Different translations will |
|
17 |
+# need to supply alternate txt |
|
18 |
+ |
|
19 |
+<: |
|
20 |
+ my $sidenav; |
|
21 |
+ $sidenav = [ |
|
22 |
+ {'url' => 'getinvolved/getinvolved', |
|
23 |
+ 'txt' => 'Get Involved', |
|
24 |
+ 'subelements' => [ |
|
25 |
+ {'url' => 'getinvolved/everyone', |
|
26 |
+ 'txt' => 'Everyone', |
|
27 |
+ }, |
|
28 |
+ {'url' => 'getinvolved/technical', |
|
29 |
+ 'txt' => 'Technical Users', |
|
30 |
+ }, |
|
31 |
+ {'url' => 'getinvolved/developers', |
|
32 |
+ 'txt' => 'Developers', |
|
33 |
+ }] |
|
34 |
+ }, |
|
35 |
+ {'url' => 'donate/donate', |
|
36 |
+ 'txt' => 'Donate', |
|
37 |
+ }, |
|
38 |
+ ]; |
|
39 |
+:> |