forked from pre-commit/pre-commit.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.mako
22 lines (22 loc) · 973 Bytes
/
index.mako
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
## -*- coding: utf-8 -*-
<%!
from template_lib import md
%>
<%inherit file="base.mako" />
<div class="row">
<div class="col-sm-3 d-none d-lg-block">
<nav class="nav flex-column nav-pills sticky-top" aria-orientation="vertical" id="content-navigation">
<a class="nav-link active" href="#intro" role="tab">Introduction</a>
<a class="nav-link" href="#install" role="tab">Installation</a>
<a class="nav-link" href="#plugins" role="tab">Adding plugins</a>
<a class="nav-link" href="#usage" role="tab">Usage</a>
<a class="nav-link" href="#new-hooks" role="tab">Creating new hooks</a>
<a class="nav-link" href="#cli" role="tab">Command line interface</a>
<a class="nav-link" href="#advanced" role="tab">Advanced features</a>
<a class="nav-link" href="#contributing" role="tab">Contributing</a>
</nav>
</div>
<div class="col-lg-9 col-12">
${body}
</div>
</div>