mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
Index page is jekyll-friendly
This commit is contained in:
parent
186ff6ecb7
commit
589e460678
2 changed files with 58 additions and 54 deletions
55
_layouts/default.html
Normal file
55
_layouts/default.html
Normal file
|
|
@ -0,0 +1,55 @@
|
||||||
|
<!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</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" />
|
||||||
|
<link href="./static/styles/custom/home.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><a href="install/">Install</a></li>
|
||||||
|
<li><a href="downloads/">Downloads</a></li>
|
||||||
|
<!--<li><a href="/guide/">Guide</a></li>-->
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
{{ page.content }}
|
||||||
|
<hr/>
|
||||||
|
<footer>
|
||||||
|
<p>© 2013-2019. The go-ethereum Authors.</p>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
57
index.html
57
index.html
|
|
@ -1,51 +1,6 @@
|
||||||
<!DOCTYPE html>
|
---
|
||||||
<html lang="en">
|
layout: default
|
||||||
<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</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" />
|
|
||||||
<link href="./static/styles/custom/home.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><a href="install/">Install</a></li>
|
|
||||||
<li><a href="downloads/">Downloads</a></li>
|
|
||||||
<!--<li><a href="/guide/">Guide</a></li>-->
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="jumbotron">
|
<div class="jumbotron">
|
||||||
<div class="container mascot">
|
<div class="container mascot">
|
||||||
<h1>Go Ethereum</h1>
|
<h1>Go Ethereum</h1>
|
||||||
|
|
@ -90,10 +45,4 @@
|
||||||
<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">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>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<hr/>
|
|
||||||
<footer>
|
|
||||||
<p>© 2013-2016. The go-ethereum Authors.</p>
|
|
||||||
</footer>
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue