File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,9 @@ collections:
78
78
versions :
79
79
output : true
80
80
permalink : /version/:path
81
+ migrations :
82
+ output : true
83
+ permalink : /migration/:path
81
84
82
85
# Exclude from processing.
83
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 :
127
- path : " migration " # an empty string here means all files in the project
130
+ type : " migrations "
128
131
values :
129
132
layout : migration-guide
130
133
toc : true
Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments