Skip to content

Commit 35697e9

Browse files
committed
Link to download page from "getting started"
1 parent 1a93725 commit 35697e9

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

docs/getting-started.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,8 @@ please [open an issue on GitHub](/support){: .alert-link}.
6161

6262
<br/>
6363
To get started, you will need to download the release corresponding to the platform
64-
you are using. If you want the latest and greatest, check out the ["nightly"][nightly]
65-
image builds. If you are looking for older releases or other file types, you can
66-
check out the [GitHub releases page][releases].
64+
you are using. For additional downloads and advanced information, check out our
65+
[dedicated download page](/download).
6766

6867
</div>
6968
<div class="release-link-alt" markdown="1">
@@ -84,7 +83,7 @@ corresponds to your platform:
8483
## Step 2: Flash the SD card
8584

8685
{% include icon.html type="danger" %}
87-
This will erase everything on your SD card! Backup your files
86+
This will erase everything on your SD card! Back up your files
8887
if you do not want to lose them!
8988
{: .alert .alert-danger }
9089

download.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ no-wrapper: true
99
<div class="row margin-bottom-xl">
1010
<div class="col-sm-12">
1111
<p class="lead">
12-
<span class="glyphicon glyphicon-download"/>
12+
<span class="glyphicon glyphicon-download"></span>
1313
Select the download below that corresponds to your hardware.
1414
<br/>
1515
<small>
@@ -29,7 +29,7 @@ no-wrapper: true
2929
</p>
3030
</div>
3131
<a data-release-link-platform="ev3" class="btn btn-lg btn-primary">
32-
<span class="glyphicon glyphicon-download-alt"/>
32+
<span class="glyphicon glyphicon-download-alt"></span>
3333
Download for EV3
3434
</a>
3535
</div>
@@ -49,13 +49,13 @@ no-wrapper: true
4949
</div>
5050
<div class="margin-bottom-md">
5151
<a data-release-link-platform="rpi" class="btn btn-md btn-primary">
52-
<span class="glyphicon glyphicon-download-alt"/>
52+
<span class="glyphicon glyphicon-download-alt"></span>
5353
Download for Raspberry Pi Model 0/1
5454
</a>
5555
</div>
5656
<div class="margin-bottom-md">
5757
<a data-release-link-platform="rpi2" class="btn btn-md btn-primary">
58-
<span class="glyphicon glyphicon-download-alt"/>
58+
<span class="glyphicon glyphicon-download-alt"></span>
5959
Download for Raspberry Pi Model 2/3
6060
</a>
6161
</div>
@@ -76,7 +76,7 @@ no-wrapper: true
7676
</div>
7777
<div class="margin-bottom-md">
7878
<a data-release-link-platform="bone" class="btn btn-md btn-primary">
79-
<span class="glyphicon glyphicon-download-alt"/>
79+
<span class="glyphicon glyphicon-download-alt"></span>
8080
Download for BeagleBone
8181
</a>
8282
</div>
@@ -105,7 +105,7 @@ no-wrapper: true
105105
</p>
106106
<div class="margin-top-md">
107107
<a class="btn btn-md btn-primary" href="https://oss.jfrog.org/list/oss-snapshot-local/org/ev3dev/brickstrap/">
108-
<span class="glyphicon glyphicon-link"/>
108+
<span class="glyphicon glyphicon-link"></span>
109109
Snapshots
110110
</a>
111111
</div>
@@ -119,7 +119,7 @@ no-wrapper: true
119119
</p>
120120
<div class="margin-top-md">
121121
<a class="btn btn-md btn-primary" href="https://github.com/ev3dev/ev3dev/releases">
122-
<span class="glyphicon glyphicon-link"/>
122+
<span class="glyphicon glyphicon-link"></span>
123123
GitHub Releases
124124
</a>
125125
</div>

javascripts/releases.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function initDownloadLinks() {
4343
if (platformRegex.test(releaseAssets[assetIndex].name)) {
4444
$linkElem.attr('href', releaseAssets[assetIndex]['browser_download_url']);
4545
var fileSize = releaseAssets[assetIndex]['size'] >> 20;
46-
$('<small/>').text('(' + fileSize + ' MiB)').appendTo($linkElem);
46+
$('<small/>').text(' (' + fileSize + ' MiB)').appendTo($linkElem);
4747
return true;
4848
}
4949
}

0 commit comments

Comments
 (0)