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 2a6de59 commit da15491Copy full SHA for da15491
lessons/_config.yml
@@ -1,6 +1,5 @@
1
collections:
2
lessons:
3
output: true
4
- permalink: /:collection/:name
5
order:
6
- what-is-a-test.md
lessons/index.html
@@ -3,10 +3,13 @@
title: Unit Testing React
---
-<ul>
7
- {% for lesson in site.lessons %}
8
- <li>
9
- <a href="{{ lesson.url }}">{{ lesson.title }}</a> - {{ lesson.description }}
10
- </li>
11
- {% endfor %}
12
-</ul>
+<h1>Lessons</h1>
+<hr>
+{% for lesson in site.lessons %}
+<h2>
+ <a href="{{ lesson.url }}">
+ {{ lesson.name }} - {{ lesson.position }}
+ </a>
13
+</h2>
14
+<p>{{ lesson.content | markdownify }}</p>
15
+{% endfor %}
0 commit comments