Skip to content

Commit 9344d26

Browse files
committed
docs: index page
1 parent fd86333 commit 9344d26

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

lessons/_config.yml

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

lessons/index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
title: Unit Testing React
4+
---
5+
6+
<h1>Lessons</h1>
7+
<hr>
8+
{% for staff_member in site.staff_members %}
9+
<h2>
10+
<a href="{{ staff_member.url }}">
11+
{{ staff_member.name }} - {{ staff_member.position }}
12+
</a>
13+
</h2>
14+
<p>{{ staff_member.content | markdownify }}</p>
15+
{% endfor %}

0 commit comments

Comments
 (0)