We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22b6ec5 commit caed00dCopy full SHA for caed00d
_config.yml
@@ -78,6 +78,9 @@ collections:
78
versions:
79
output: true
80
permalink: /version/:path
81
+ migrations:
82
+ output: true
83
+ permalink: /migration/:path
84
85
# Exclude from processing.
86
# The following items will not be processed, by default. Create a custom list
@@ -124,7 +127,7 @@ defaults:
124
127
permalink: /blog/:title/
125
128
-
126
129
scope:
- path: "migration" # an empty string here means all files in the project
130
+ type: "migrations"
131
values:
132
layout: migration-guide
133
toc: true
migrations.html
@@ -0,0 +1,11 @@
1
+---
2
+layout: base
3
4
+
5
+{% assign doclist = site.migrations %}
6
+ <ul>
7
+ {% for doc in doclist %}
8
+ <li><a href="{{ site.baseurl }}{{ doc.url }}">{{ doc.url }}</a></li>
9
+ {% endfor %}
10
+ </ul>
11
0 commit comments