diff --git a/layouts/partials/install.html b/layouts/partials/install.html
new file mode 100644
index 00000000..81891672
--- /dev/null
+++ b/layouts/partials/install.html
@@ -0,0 +1,75 @@
+
+
+
Install
+
+
+
+
+
+ 2. After installation, get started adding and working with files on IPFS.
+
+
+
+
+
ipfs init
+
+
ipfs daemon
+
+
ipfs cat
+
+
ipfs get
+
+
+
Is the command line not your jam? Download ipfs-desktop!
+
+
+
Implementations
+
+
+
Integrations
+
+
+
\ No newline at end of file
diff --git a/less/main.less b/less/main.less
index c7b20cac..36bad200 100755
--- a/less/main.less
+++ b/less/main.less
@@ -22,6 +22,7 @@
@import 'components/code';
@import 'components/blog';
@import (less) 'node_modules/magnific-popup/dist/magnific-popup.css';
+@import (less) 'node_modules/tachyons/css/tachyons.css';
@import 'pages/home';
@import 'pages/docs';
diff --git a/less/pages/home.less b/less/pages/home.less
index 4c43fc75..ac32edfd 100644
--- a/less/pages/home.less
+++ b/less/pages/home.less
@@ -4,7 +4,8 @@
*
--------------------------------------------------------------------*/
-#implementations {
+#implementations,
+install {
@color-white: #fff;
@color-grey: rgba( 255, 255, 255, 0.6);
@color-teal: #6acad1;
@@ -13,7 +14,7 @@
width: 100vw;
left: 50%;
margin-left: -50vw;
- margin-top: 80px;
+ // margin-top: 80px;
padding-bottom: 40px;
background: fade(@blue-space, 100%);
background-image: url('../images/stars.png'), linear-gradient(to bottom, fade(@blue-space, 100%) 0%,#062b3f 100%);
@@ -67,6 +68,49 @@
}
}
+.install-underline {
+ width: 50px;
+ height: 3px;
+ border-radius: 3px;
+ background: @brand-teal;
+ display: block;
+ margin: 0 auto;
+}
+
+section#install:after {
+ display: none;
+}
+
+.install-link-heading {
+ margin-top: 35px;
+}
+
+.install-title {
+ color: white;
+ margin-bottom: 20px;
+}
+
+.code-box {
+ background-color: black;
+ font-family: monospace;
+}
+
+#install p {
+ color: #63c8cf;
+}
+
+#install p.code-comment {
+ color: white;
+}
+
+.button-whitepaper {
+ margin-bottom: 75px;
+}
+
+section:after #install {
+ display: none;
+}
+
.latest-list {
margin-bottom: 0;
diff --git a/package.json b/package.json
index c0fb055e..a2ad2dba 100644
--- a/package.json
+++ b/package.json
@@ -1,12 +1,14 @@
{
"name": "ipfs.io",
"private": true,
- "dependencies": {},
+ "dependencies": {
+ "ipfs-css": "^0.12.0"
+ },
"devDependencies": {
"browserify": "^14.4.0",
"dnslink-deploy": "^1.0.7",
"factor-bundle": "^2.5.0",
- "hugo-bin": "0.18.1",
+ "hugo-bin": "^0.42.0",
"imagemin-cli": "^3.0.0",
"imagemin-jpegtran": "^5.0.2",
"imagemin-optipng": "^5.2.1",
@@ -21,6 +23,7 @@
"npm-run-all": "^4.1.5",
"pixi.js": "^4.5.3",
"standard": "^10.0.2",
+ "tachyons": "^4.10.0",
"uglify-js": "^3.0.18",
"watchify": "^3.9.0"
},