-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from ipfs/feat/about
feat(site): Add about section
- Loading branch information
Showing
5 changed files
with
34 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#### Welcome to IPFS distributions | ||
|
||
This is the downloads website for all the official software distributions of | ||
the [IPFS Project](https://ipfs.io). You can find all the apps, binaries, | ||
and packages here. Every distribution has a section on this | ||
page with, | ||
|
||
* the distribution name and a short description | ||
* the current version number and release date | ||
* the software license (usually MIT) | ||
* a download button that detects your platform | ||
* a grid with download links for all supported platforms (os and architectures) | ||
* `Changelog`, a link to a summary of all version changes | ||
* `All Versions`, a link to view and download previous versions | ||
|
||
The `All Versions` link on each distribution shows directory listings for all the available versions, and a `versions` file ([example](http://dist.ipfs.io/go-ipfs/versions)). This file can be used by tools, such as [ipfs-update](#ipfs-update), to find all the available versions and download the latest. | ||
|
||
The directory listing of each version ([example](http://dist.ipfs.io/go-ipfs/v0.3.11)) has all the platform archives (`.zip` or `.tar.gz`), a `README.md` and a `dist.json` which describe the release for humans and machines. It is meant to be easily consumed and used by tools. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.d-about { | ||
padding-top: 5 * @baseLineHeight; | ||
padding-bottom: 3 * @baseLineHeight; | ||
line-height: 1.5 * @baseLineHeight; | ||
border-bottom: 1px solid @borderGray; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ | |
@import './_footer'; | ||
@import './_sidebar'; | ||
@import './_component'; | ||
@import './_about'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters