forked from jupyter/jupyter.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocumentation.html
35 lines (34 loc) · 1.01 KB
/
documentation.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
layout: default
title: Documentation
---
<section>
<div class="header header-grey">
<h2>Documentation</h2>
<p>Browse the Jupyter universe for information.</p>
</div>
</section>
<section>
<div class="top-section-border">
<div class="container">
<div class="row cardlist">
{%- for card in site.data.documentation -%}
<div class="col-lg-4 col-md-6 col-sm-6 cardlist-col">
<div class="cardlist-card doc-card">
<div class="card-heading">
<h4>{{card[0]}}</h4>
</div>
<div class="card-body">
<ul>
{%- for item in card[1] %}
<li><a href="{{item[1]}}">{{item[0]}}</a></li>
{%- endfor %}
</ul>
</div>
</div>
</div>
{%- endfor -%}
</div>
</div>
</div>
</section>