@@ -10,42 +10,46 @@ tab: downloads
10
10
11
11
#sections .row-fluid
12
12
%section .span4
13
+ - download_page = page.build_versions[:stable]
13
14
%header
14
- %h3 Stable Build
15
+ %h3 Development Build
16
+ - if !download_page.nil?
17
+ %h4 for #{download_page.build_info.eclipse_version.full_name}
15
18
.item.center
16
- - download_page = page.build_versions[:stable]
17
19
- if !download_page.nil?
18
20
%a .btn.btn-primary {:href => relative(download_page.output_path)}
19
21
%i.icon-download
20
22
Download #{download_page.build_info.version}
21
-
22
23
- else
23
24
:markdown
24
25
Sorry, but there is no **stable** build of #{site.products[page.product_id].name} at the moment.
25
26
%section .span4
27
+ - download_page = page.build_versions[:development]
26
28
%header
27
29
%h3 Development Build
30
+ - if !download_page.nil?
31
+ %h4 for #{download_page.build_info.eclipse_version.full_name}
28
32
.item.center
29
33
- download_page = page.build_versions[:development]
30
34
- if !download_page.nil?
31
35
%a .btn.btn-primary {:href => relative(download_page.output_path)}
32
36
%i.icon-download
33
37
Download #{download_page.build_info.version}
34
-
35
38
- else
36
39
:markdown
37
40
Sorry, but there is no **development** build of #{site.products[page.product_id].name} at the moment.
38
41
39
42
%section .span4
43
+ - download_page = page.build_versions[:nightly]
40
44
%header
41
45
%h3 Nightly Build
46
+ - if !download_page.nil?
47
+ %h4 for #{download_page.build_info.eclipse_version.full_name}
42
48
.item.center
43
- - download_page = page.build_versions[:nightly]
44
49
- if !download_page.nil?
45
50
%a .btn.btn-primary {:href => relative(download_page.output_path)}
46
51
%i.icon-download
47
52
Download #{download_page.build_info.version}
48
-
49
53
- else
50
54
:markdown
51
55
Sorry, but there is no **nightly** build of #{site.products[page.product_id].name} at the moment.
0 commit comments