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 fd86333 commit 9344d26Copy full SHA for 9344d26
lessons/_config.yml
@@ -1,5 +1,6 @@
1
collections:
2
lessons:
3
output: true
4
+ permalink: /:collection/:name
5
order:
6
- what-is-a-test.md
lessons/index.html
@@ -0,0 +1,15 @@
+---
+layout: default
+title: Unit Testing React
+
+<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