We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df93c21 commit 70c6c50Copy full SHA for 70c6c50
scripts/build_site.py
@@ -7,6 +7,7 @@
7
import glob
8
import json
9
import os
10
+import os.path
11
12
import colorama
13
@@ -66,7 +67,7 @@ def get_data(theme):
66
67
'bootstrap3' in data['chain']) and \
68
'bootstrap3-gradients' not in data['chain']
69
data['engine'] = utils.get_template_engine(data['chain'])
- data['chain'] = data['chain'][::-1]
70
+ data['chain'] = [os.path.basename(i) for i in reversed(data['chain'])]
71
72
data['allver'] = []
73
for v in ALL_VERSIONS_SUPPORTED:
0 commit comments