Browse code

Add newsletter link to nav

hiromipaw authored on 27/10/2017 14:20:32
Showing 1 changed files
... ...
@@ -22,6 +22,9 @@
22 22
       {'url'  => 'press/press',
23 23
        'txt'  => 'Tor Media and Press',
24 24
       }, 
25
+      {'url'  => 'https://newsletter.torproject.org/',
26
+       'txt'  => 'Tor Newsletter',
27
+      },
25 28
       {'url'  => 'https://blog.torproject.org/',
26 29
        'txt'  => 'Tor Blog',
27 30
       }, 
Browse code

revamp the press page to put all of our press onto one page for quick viewing. based on feedback from two reporters.

Andrew Lewman authored on 27/11/2012 04:35:36
Showing 1 changed files
... ...
@@ -20,10 +20,7 @@
20 20
   my $sidenav;
21 21
   $sidenav = [
22 22
       {'url'  => 'press/press',
23
-       'txt'  => 'Press Releases',
24
-      }, 
25
-      {'url'  => 'press/inthemedia',
26
-       'txt'  => 'Tor in the Media',
23
+       'txt'  => 'Tor Media and Press',
27 24
       }, 
28 25
       {'url'  => 'https://blog.torproject.org/',
29 26
        'txt'  => 'Tor Blog',
Browse code

fix comments in sidenav.wmi

Runa A. Sandvik authored on 17/03/2011 11:28:32
Showing 1 changed files
... ...
@@ -4,7 +4,7 @@
4 4
 # Revision: $Revision$
5 5
 # Translation-Priority: 2-medium
6 6
 
7
-# this structure defines the side nav bar for the /about pages
7
+# this structure defines the side nav bar for the /press pages
8 8
 # and is the input for include/side.wmi
9 9
 
10 10
 # fields:
Browse code

somewhere along the line we stopped setting svn props

Roger Dingledine authored on 11/03/2011 02:15:16
Showing 1 changed files
... ...
@@ -1,7 +1,7 @@
1 1
 #!/usr/bin/wml
2 2
 
3 3
 ## translation metadata
4
-# Revision: $Revision: 0 $
4
+# Revision: $Revision$
5 5
 # Translation-Priority: 2-medium
6 6
 
7 7
 # this structure defines the side nav bar for the /about pages
Browse code

rename the press index page to press to make the navbar work correctly.

Andrew Lewman authored on 07/10/2010 23:00:36
Showing 1 changed files
... ...
@@ -19,7 +19,7 @@
19 19
 <:
20 20
   my $sidenav;
21 21
   $sidenav = [
22
-      {'url'  => 'press/index',
22
+      {'url'  => 'press/press',
23 23
        'txt'  => 'Press Releases',
24 24
       }, 
25 25
       {'url'  => 'press/inthemedia',
Browse code

fix the press links so they work correctly, update the affected pages.

Andrew Lewman authored on 24/09/2010 17:34:31
Showing 1 changed files
... ...
@@ -19,7 +19,7 @@
19 19
 <:
20 20
   my $sidenav;
21 21
   $sidenav = [
22
-      {'url'  => 'press/',
22
+      {'url'  => 'press/index',
23 23
        'txt'  => 'Press Releases',
24 24
       }, 
25 25
       {'url'  => 'press/inthemedia',
Browse code

more press fixes, sync with main website some more.

Andrew Lewman authored on 20/09/2010 22:08:24
Showing 1 changed files
... ...
@@ -19,7 +19,7 @@
19 19
 <:
20 20
   my $sidenav;
21 21
   $sidenav = [
22
-      {'url'  => 'press/index',
22
+      {'url'  => 'press/',
23 23
        'txt'  => 'Press Releases',
24 24
       }, 
25 25
       {'url'  => 'press/inthemedia',
Browse code

try to fix the press mess.

Andrew Lewman authored on 20/09/2010 19:46:16
Showing 1 changed files
... ...
@@ -19,7 +19,7 @@
19 19
 <:
20 20
   my $sidenav;
21 21
   $sidenav = [
22
-      {'url'  => 'press/',
22
+      {'url'  => 'press/index',
23 23
        'txt'  => 'Press Releases',
24 24
       }, 
25 25
       {'url'  => 'press/inthemedia',
Browse code

clean up the press section to make it less duplicative of content.

Andrew Lewman authored on 20/09/2010 19:15:20
Showing 1 changed files
... ...
@@ -19,16 +19,13 @@
19 19
 <:
20 20
   my $sidenav;
21 21
   $sidenav = [
22
-      {'url'  => 'press/press',
23
-       'txt'  => 'Announcements',
24
-      },
25
-      {'url'  => 'press/pressreleases',
22
+      {'url'  => 'press/',
26 23
        'txt'  => 'Press Releases',
27 24
       }, 
28 25
       {'url'  => 'press/inthemedia',
29 26
        'txt'  => 'Tor in the Media',
30 27
       }, 
31
-      {'url'  => 'https://blog.torproject.org',
28
+      {'url'  => 'https://blog.torproject.org/',
32 29
        'txt'  => 'Tor Blog',
33 30
       }, 
34 31
   ];
Browse code

first cut of the new, shiny tor website as wml.

Andrew Lewman authored on 09/07/2010 03:55:22
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,35 @@
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'  => 'press/press',
23
+       'txt'  => 'Announcements',
24
+      },
25
+      {'url'  => 'press/pressreleases',
26
+       'txt'  => 'Press Releases',
27
+      }, 
28
+      {'url'  => 'press/inthemedia',
29
+       'txt'  => 'Tor in the Media',
30
+      }, 
31
+      {'url'  => 'https://blog.torproject.org',
32
+       'txt'  => 'Tor Blog',
33
+      }, 
34
+  ];
35
+:>