go-ethereum/_layouts/default.html

50 lines
1.7 KiB
HTML
Raw Normal View History

---
common-css:
- /static/styles/bootstrap.min.css
- /static/styles/flatly.min.css
- /static/styles/font-awesome.min.css
- /static/styles/custom/common.css
common-js:
- /static/scripts/jquery.min.js
- /static/scripts/bootstrap.min.js
- /static/scripts/moment.min.js
- /static/scripts/marked.min.js
- /static/scripts/emojify.min.js
- /static/scripts/custom/polyfills.js
---
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<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="{% include link.html url='' %}">Go Ethereum</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
2019-04-04 17:21:15 -05:00
{% for link in site.data.navbar %}
{% capture target %}{% include link.html url=link.last %}{% endcapture %}
<li><a href="{{target |strip }}">{{ link.first }}</a></li>
{% endfor %}
</ul>
</div>
</div>
</nav>
2019-10-28 10:45:19 -05:00
<h3>[{% include link.html url='' %}]</h3>
{{ content }}
<hr/>
<footer class="container">
2019-10-28 10:52:02 -05:00
<p>&copy; 20132019. The go-ethereum Authors. | <a href="https://github.com/ethereum/go-ethereum/blob/gh-pages/{{ page.name }}">Edit this page</a></p>
</p>
</footer>
</body>
</html>