Move the content of install and docs index to the main index page

This commit is contained in:
Adam Schmideg 2019-01-03 10:50:31 +01:00
parent 88fd743fe8
commit cf7d6ea88e
3 changed files with 17 additions and 93 deletions

View file

@ -1,17 +0,0 @@
* User documentation can be found at our [Ethereum User Guide and reference manual](http://ethereum.gitbooks.io/frontier-guide/content/).
* For the API reference and developer documentation head over to the auto generated [GoDoc](https://godoc.org/github.com/ethereum/go-ethereum) documentation.
This is the Wiki for the official Ethereum golang implementation. For generic Ethereum-related information (whitepaper, yellow paper, protocol and interface specs, APIs, DAPP development guides, etc) see the [Ethereum main wiki](https://github.com/ethereum/wiki/wiki).
Main entry points:
* [Installation Instructions](Building-Ethereum)
* [Developer/Management API](Management-APIs)
* [Managing Accounts](Managing-your-accounts)
* [Command Line Options](Command-Line-Options)
* [JavaScript Console](JavaScript-Console)
* [Private Network](Private-network)
* [Developers' Guide](Developers'-Guide)
* [Whisper v6](Whisper)
Sidebar lists all pages.

View file

@ -49,6 +49,22 @@ css:
<div class="col-md-7"> <div class="col-md-7">
<h2 class="featurette-heading">How can I use it?</h2> <h2 class="featurette-heading">How can I use it?</h2>
<p class="lead">Go Ethereum is available either as a standalone client called Geth that you can install on pretty much any operating system, or as a library that you can embed in your Go, Android or iOS projects.</p> <p class="lead">Go Ethereum is available either as a standalone client called Geth that you can install on pretty much any operating system, or as a library that you can embed in your Go, Android or iOS projects.</p>
<p class="lead">See our <a href="./install">installation guide</a> or our <a href="https://github.com/ethereum/go-ethereum/wiki" target="_blank">wiki pages</a> for details!</p> <p class="lead">User documentation can be found at our <a href="http://ethereum.gitbooks.io/frontier-guide/content/">Ethereum User Guide and reference manual</a>.
For the API reference and developer documentation head over to the auto generated <a href="https://godoc.org/github.com/ethereum/go-ethereum">GoDoc</a> documentation.
</p>
<p class="lead">For generic Ethereum-related information (whitepaper, yellow paper, protocol and interface specs, APIs, DAPP development guides, etc) see the <a href="https://github.com/ethereum/wiki/wiki">Ethereum main wiki</a>.</p>
<p class="lead">Here are the main entry points.
<ul>
<li><a href="/docs/Installing-Geth">Installation guide</a></li>
<li><a href="/docs/Building-Ethereum">Building Ethereum</a></li>
<li><a href="/docs/Management-APIs">Developer/Management API</a></li>
<li><a href="/docs/Managing-your-accounts">Managing Accounts</a></li>
<li><a href="/docs/Command-Line-Options">Command Line Options</a></li>
<li><a href="/docs/JavaScript-Console">JavaScript Console</a></li>
<li><a href="/docs/Private-network">Private Network</a></li>
<li><a href="/docs/Developers'-Guide">Developers Guide</a></li>
<li><a href="/docs/Whisper">Whisper v6</a></li>
</ul>
</p>
</div> </div>
</div> </div>

View file

@ -1,75 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Go Ethereum Installation</title>
<link rel="icon" type="image/png" href="../static/images/favicon.png" />
<link href="../static/styles/bootstrap.min.css" rel="stylesheet" />
<link href="../static/styles/flatly.min.css" rel="stylesheet" />
<link href="../static/styles/font-awesome.min.css" rel="stylesheet" />
<link href="../static/styles/custom/common.css" rel="stylesheet" />
<script src="../static/scripts/jquery.min.js"></script>
<script src="../static/scripts/bootstrap.min.js"></script>
<script src="../static/scripts/moment.min.js"></script>
<script src="../static/scripts/marked.min.js"></script>
<script src="../static/scripts/emojify.min.js"></script>
<script src="../static/scripts/custom/polyfills.js"></script>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../">Go Ethereum</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="../install/">Install</a></li>
<li><a href="../downloads/">Downloads</a></li>
</ul>
</div>
</div>
</nav>
<div class="container" style="padding-top: 24px;">
<div class="row">
<div class="col-md-12">
<h1>Installing Go Ethereum</h1>
</div>
<div class="col-md-12" id="content"></div>
</div>
<hr/>
<footer>
<p>&copy; 2013-2016. The go-ethereum Authors.</p>
</footer>
</div>
<script type="text/javascript">
$.ajax({
url: 'https://raw.githubusercontent.com/wiki/ethereum/go-ethereum/Installing-Geth.md',
error: function() {
alert("Failed to load latest release!");
},
dataType: 'text',
success: function(data) {
$('#content').html(marked(data));
emojify.setConfig({img_dir: '../static/images/emoji'});
emojify.run(document.getElementById('content'));
}
});
</script>
</body>
</html>