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.
2 parents 609f21a + 8b8827c commit 339dee7Copy full SHA for 339dee7
tutorials/index.html
@@ -1,16 +1,18 @@
1
---
2
author: admin
3
layout: default
4
-title: tutorials
+title: Tutorials
5
order: 4
6
7
8
-<ul>
+<h1>{{title}}</h1>
9
+
10
+<ul class="tutorial-list">
11
{% assign tutos = site.pages | sort : 'url' %}
12
{% for page in tutos %}
13
{% if page.layout == 'tutorial' %}
14
{% if page.title != 'example tutorial page'%}
- <li><a href="{{page.url}}">{{page.title}}</a></li>
15
+ <li class="tutorial"><a href="{{page.url}}" class="tutorial-title">{{page.title}}</a>{% if page.description %}<p class="tutorial-description">{{page.description}}</p>{% endif %}</li>
16
{% endif %}
17
18
{% endfor %}
0 commit comments