Skip to content

Commit 5bb7ebe

Browse files
committed
adding back top-level sections
1 parent 60c035d commit 5bb7ebe

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

app/templates/pages/learn/index.html

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,18 @@ <h2>Running Your First Java Application</h2>
2828
</ul>
2929
</div>
3030

31+
<div class="learn-group">
32+
<h2>Staying Aware of New Features</h2>
33+
<ul>
34+
{% for tutorial in file.data.tutorials.awareness | sort(false, false, "category_order") %}
35+
<li>
36+
<a href="/{{ tutorial.path }}">{{ tutorial.title_html | safe }}</a><br />
37+
<div class="desc">{{ tutorial.description_html | safe }}</div>
38+
</li>
39+
{% endfor %}
40+
</ul>
41+
</div>
42+
3143

3244
<div class="learn-group">
3345
<h2>Getting to Know the Language</h2>
@@ -41,6 +53,42 @@ <h2>Getting to Know the Language</h2>
4153
</ul>
4254
</div>
4355

56+
<div class="learn-group">
57+
<h2>Mastering the API</h2>
58+
<ul>
59+
{% for tutorial in file.data.tutorials.api | sort(false, false, "category_order") %}
60+
<li>
61+
<a href="/{{ tutorial.path }}">{{ tutorial.title_html | safe }}</a><br />
62+
<div class="desc">{{ tutorial.description_html | safe }}</div>
63+
</li>
64+
{% endfor %}
65+
</ul>
66+
</div>
67+
68+
<div class="learn-group">
69+
<h2>Organizing your Application</h2>
70+
<ul>
71+
{% for tutorial in file.data.tutorials.organizing | sort(false, false, "category_order") %}
72+
<li>
73+
<a href="/{{ tutorial.path }}">{{ tutorial.title_html | safe }}</a><br />
74+
<div class="desc">{{ tutorial.description_html | safe }}</div>
75+
</li>
76+
{% endfor %}
77+
</ul>
78+
</div>
79+
80+
<div class="learn-group">
81+
<h2>Getting to know the JVM</h2>
82+
<ul>
83+
{% for tutorial in file.data.tutorials.jvm | sort(false, false, "category_order") %}
84+
<li>
85+
<a href="/{{ tutorial.path }}">{{ tutorial.title_html | safe }}</a><br />
86+
<div class="desc">{{ tutorial.description_html | safe }}</div>
87+
</li>
88+
{% endfor %}
89+
</ul>
90+
</div>
91+
4492
{{ contents | safe }}
4593
</div>
4694

0 commit comments

Comments
 (0)