mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
26 lines
No EOL
952 B
HTML
26 lines
No EOL
952 B
HTML
---
|
|
layout: default
|
|
---
|
|
<div class="container" style="padding-top: 24px;">
|
|
<div class="row">
|
|
<div class="col-md-3" id="toc" style="padding-top: 16px;">
|
|
{% for group in site.data.sidebar %}
|
|
<div class="list-group">
|
|
<a class="list-group-item active">{{ group[0] }}</a>
|
|
{% for link in group[1] %}
|
|
<a class="list-group-item"
|
|
href="{% if link.first[1] contains 'http' %}{{ link.first[1] }}{% else %}{{ link.first[1] | prepend: site.baseurl | replace: '//', '/'}}{% endif %}">
|
|
{{ link.first[0] }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
<div class="col-md-9" id="content">
|
|
{% if page.title %}
|
|
<h1 class="featurette-heading">{{ page.title }}</h1>
|
|
{% endif %}
|
|
|
|
{{ content }}
|
|
</div>
|
|
</div>
|
|
</div> |