mirror of
https://github.com/torproject/webwml.git
synced 2025-03-06 09:17:17 +00:00
30 lines
707 B
Plaintext
30 lines
707 B
Plaintext
#!/usr/bin/wml
|
|
|
|
## translation metadata
|
|
# Revision: $Revision$
|
|
# Translation-Priority: 2-medium
|
|
|
|
# this structure defines the side nav bar for the /press pages
|
|
# and is the input for include/side.wmi
|
|
|
|
# fields:
|
|
#
|
|
# 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 = [
|
|
{'url' => 'press/press',
|
|
'txt' => 'Tor Media and Press',
|
|
},
|
|
{'url' => 'https://blog.torproject.org/',
|
|
'txt' => 'Tor Blog',
|
|
},
|
|
];
|
|
:>
|