diff --git a/jekyll/tutorials.md b/jekyll/tutorials.md
new file mode 100644
index 0000000..945d97b
--- /dev/null
+++ b/jekyll/tutorials.md
@@ -0,0 +1,19 @@
+---
+permalink: /tutorials/
+---
+
+## Listing Tutorials
+
+
+{% for p in site.pages %}
+ {% assign path = p.path | default: "" %}
+ {% if path != "" and path contains "tutorials/" %}
+ {% unless path == "tutorials/index.md" or path == "tutorials/README.md" or path == "tutorials.md" %}
+ -
+ {{ p.title | default: path | replace: "tutorials/", "" }}
+ {% if p.date %} — {% endif %}
+
+ {% endunless %}
+ {% endif %}
+{% endfor %}
+