Skip to content

Commit da15491

Browse files
committed
docs: change index
1 parent 2a6de59 commit da15491

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

lessons/_config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
collections:
22
lessons:
33
output: true
4-
permalink: /:collection/:name
54
order:
65
- what-is-a-test.md

lessons/index.html

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33
title: Unit Testing React
44
---
55

6-
<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>
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 %}

0 commit comments

Comments
 (0)