File tree Expand file tree Collapse file tree 6 files changed +13
-7
lines changed Expand file tree Collapse file tree 6 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
title : A Nested Page
3
+ description : An example of a nested page
3
4
---
4
5
5
6
# A Nested Page
Original file line number Diff line number Diff line change 1
1
---
2
2
title : Quiz
3
+ description : How to add interactive quizzes to your site.
3
4
---
4
5
5
6
# Quizzes
Original file line number Diff line number Diff line change 1
1
---
2
2
title : Extras
3
+ description : Extras, including quizzes.
3
4
---
4
5
5
6
# Extras
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ title: Getting Started
3
3
tags :
4
4
- jekyll
5
5
- github
6
+ description : Getting started with Docsy Jekyll
6
7
---
7
8
8
9
# Getting Started
Original file line number Diff line number Diff line change 1
1
---
2
2
title : A Nested Page
3
+ description : An example of a a nested page in a subfolder.
3
4
---
4
5
5
6
# A Nested Page
Original file line number Diff line number Diff line change @@ -9,10 +9,11 @@ permalink: /docs/
9
9
Welcome to the {{ site.title }} Documentation pages! Here you can quickly jump to a
10
10
particular page.
11
11
12
- {% for post in site.docs %}
13
- <ul >
14
- <li class =" c-archives__item " >
15
- <a href =" {{ post.url | prepend: site.baseurl }} " ><h4 >{{ post.title }}</h4 ></a >
16
- </li >
17
- </ul >
18
- {% endfor %}
12
+ <div class =" section-index " >
13
+ <hr class="panel-line">
14
+ {% for post in site.docs %}
15
+ <div class="entry">
16
+ <h5><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h5>
17
+ <p>{{ post.description }}</p>
18
+ </div>{% endfor %}
19
+ </div >
You can’t perform that action at this time.
0 commit comments