Include 1.15 in titles for SEO

This commit is contained in:
Misode
2020-12-19 18:02:15 +01:00
parent 0d8a7c00ee
commit 394dd27d85
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
"share": "Share",
"title.generator": "%0% Generator",
"title.home": "Data Pack Generators",
"title.suffix": "%0% Minecraft 1.16, 1.17",
"title.suffix": "%0% Minecraft 1.15, 1.16, 1.17",
"preview": "Visualize",
"preview.show_density": "Show Density",
"preview.scale": "Scale",
+4 -4
View File
@@ -38,22 +38,22 @@ module.exports = (env, argv) => ({
}
}),
new HtmlWebpackPlugin({
title: 'Data Pack Generators Minecraft 1.16, 1.17',
title: 'Data Pack Generators Minecraft 1.15, 1.16, 1.17',
filename: 'index.html',
template: 'src/index.html'
}),
new HtmlWebpackPlugin({
title: 'Data Pack Generators Minecraft 1.16, 1.17',
title: 'Data Pack Generators Minecraft 1.15, 1.16, 1.17',
filename: 'settings/fields/index.html',
template: 'src/index.html'
}),
new HtmlWebpackPlugin({
title: 'Data Pack Generators Minecraft 1.16, 1.17',
title: 'Data Pack Generators Minecraft 1.15, 1.16, 1.17',
filename: '404.html',
template: 'src/index.html'
}),
...config.models.map(m => new HtmlWebpackPlugin({
title: `${m.name} Generator${m.category === true ? 's' : ''} Minecraft 1.16, 1.17`,
title: `${m.name} Generator${m.category === true ? 's' : ''} Minecraft 1.15, 1.16, 1.17`,
filename: `${m.id}/index.html`,
template: 'src/index.html'
}))