-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathwhats_left.html
More file actions
56 lines (51 loc) · 1.65 KB
/
whats_left.html
File metadata and controls
56 lines (51 loc) · 1.65 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
layout: default
---
<div class="w-80 m-auto mt-2">
<div class="d-md-flex">
<div class="d-sm-none">
<img class="logo" src="{{site.baseurl}}/assets/img/rust-python-logo.svg" alt="RustPython Logo">
</div>
<div class="pl-md-2">
<div class="title">{{ site.title }}</div>
<div class="section-title">{{ page.title }} </div>
</div>
</div>
</div>
<div class="w-80 m-auto mt-2">
{{ content }}
<div class="section-title">What's Left: Public Modules</div>
<div class="column-count-is-2">
<ol>
{% for item in site.data.whats_left.modules %}
{% assign firstchar = item.module | slice: 0 %}
{% if firstchar != "_" %}
<li class="word-wrap-anywhere"> {{ item.module }}</li>
{% endif %}
{% endfor %}
</ol>
</div>
<div class="section-title">What's Left: Private Modules</div>
<div class="column-count-is-2">
<ol>
{% for item in site.data.whats_left.modules %}
{% assign firstchar = item.module | slice: 0 %}
{% if firstchar == "_" %}
<li class="word-wrap-anywhere"> {{ item.module }}</li>
{% endif %}
{% endfor %}
</ol>
</div>
<div class="section-title">What's left: Built-in Items</div>
{% assign items_by_builtin = site.data.whats_left.builtin_items | group_by: "builtin" %}
{% for group in items_by_builtin %}
<h4>{{ group.name }}</h4>
<div class="column-count-is-2">
<ol>
{% for item in group.items %}
<li class="word-wrap-anywhere"><code>{{ item.name }}</code>{% if item.is_inherited %} {{ item.is_inherited }}{% endif %}</li>
{% endfor %}
</ol>
</div>
{% endfor %}
</div>