Skip to content
This repository was archived by the owner on Sep 22, 2022. It is now read-only.

feat: add links to offchain::ipfs and http tutorial #11

Merged
merged 4 commits into from
Nov 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />

<title>Rust IPFS</title>
<meta name="description" content="The performance and efficiency of Rust, and the decentralized power of IPFS, together at last." />
<title>Rust IPFS</title> <meta name="description" content="The performance and efficiency of Rust, and the decentralized power of IPFS, together at last." />
<meta name="image" content="https://raw.githubusercontent.com/rs-ipfs/rustipfs.com/master/img/open-graph-preview.png">

<!-- Schema.org for Google -->
Expand Down Expand Up @@ -169,6 +168,18 @@ <h2>Getting Started</h2>
<a class="top" href="#">▲</a>
</section>

<section id="further-reading">
<h2>Further Reading</h2>
<p>These are some extra resources to get you started with specific use-cases of Rust IPFS:</p>
<div>
<ul>
<li><a href="https://rs-ipfs.github.io/offchain-ipfs-manual/">The offchain::ipfs manual</a>: a project integrating IPFS and Substrate.</li>
<li><a href="https://github.com/rs-ipfs/rust-ipfs/tree/master/http#getting-started">The ipfs-http tutorial</a>: learn how to run and interact with an IPFS node via the HTTP API.</li>
</ul>
</div>
<a class="top" href="#">▲</a>
</section>

<!--
<section id="examples">
<h2>See it in action</h2>
Expand Down
10 changes: 10 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ img { max-width: 100%; }
p { font-size: 1.2rem; }
a { color: var(--logo-dark); text-decoration: none; font-weight: bold; }
code { background: var(--value1); font-size: 90%; padding: 0 0.2rem; }
li { font-size: 1.2rem; }


body > header > div, body > section > div {
Expand Down Expand Up @@ -252,6 +253,15 @@ a.top {
.enlighter-n0, .enlighter-n1 { color: #007f7f !important; }
.enlighter-default { overflow: scroll !important ;}

body > section#further-reading {
background: var(--accent2);
background-blend-mode: overlay;
}

body > section#further-reading > p > a {
color: var(--logo-dark)
}

section#support > .logos {
padding: 2rem 0;
display: grid;
Expand Down