We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da15491 commit cbc8a58Copy full SHA for cbc8a58
lessons/_config.yml
lessons/index.html
@@ -3,13 +3,12 @@
3
title: Unit Testing React
4
---
5
6
-<h1>Lessons</h1>
7
-<hr>
8
-{% for lesson in site.lessons %}
9
-<h2>
10
- <a href="{{ lesson.url }}">
11
- {{ lesson.name }} - {{ lesson.position }}
12
- </a>
13
-</h2>
14
-<p>{{ lesson.content | markdownify }}</p>
15
-{% endfor %}
+<ul>
+ {% for page in site.pages %}
+ {% if page.title %}
+ <li>
+ <a href="{{ page.url }}">{{ page.title }}</a>
+ </li>
+ {% endif %}
+ {% endfor %}
+</ul>
0 commit comments