Add redirects

master
rubenwardy 2018-07-15 19:13:16 +01:00
parent ca0db29ba0
commit 38ecf624be
No known key found for this signature in database
GPG Key ID: A1E29D52FF81513C
23 changed files with 24 additions and 1 deletions

View File

@ -2,8 +2,9 @@ sass:
# nested (default), compact, compressed, expanded # nested (default), compact, compressed, expanded
style: compressed style: compressed
gems: plugins:
- jekyll-sitemap - jekyll-sitemap
- jekyll-redirect-from
collections: collections:
en: en:

View File

@ -4,6 +4,7 @@ layout: default
root: ../../ root: ../../
idx: 1.1 idx: 1.1
description: Learn how to make a mod folder, including init.lua, depends.txt and more. description: Learn how to make a mod folder, including init.lua, depends.txt and more.
redirect_from: /en/chapters/folders.html
--- ---
## Introduction ## Introduction

View File

@ -4,6 +4,7 @@ layout: default
root: ../../ root: ../../
idx: 1.2 idx: 1.2
description: A basic introduction to Lua, including a guide on global/local scope. description: A basic introduction to Lua, including a guide on global/local scope.
redirect_from: /en/chapters/lua.html
--- ---
## Introduction ## Introduction

View File

@ -3,6 +3,7 @@ title: Inventories
layout: default layout: default
root: ../../ root: ../../
idx: 5.2 idx: 5.2
redirect_from: /en/chapters/inventories.html
--- ---
## Introduction ## Introduction

View File

@ -3,6 +3,7 @@ title: ItemStacks
layout: default layout: default
root: ../../ root: ../../
idx: 5.1 idx: 5.1
redirect_from: /en/chapters/itemstacks.html
--- ---
## Introduction ## Introduction

View File

@ -4,6 +4,7 @@ layout: default
root: ../../ root: ../../
idx: 2.2 idx: 2.2
description: An introduction to making textures in your editor of choice, an a guide on GIMP. description: An introduction to making textures in your editor of choice, an a guide on GIMP.
redirect_from: /en/chapters/creating_textures.html
--- ---
## Introduction ## Introduction

View File

@ -4,6 +4,7 @@ layout: default
root: ../../ root: ../../
idx: 2.3 idx: 2.3
description: Guide to all drawtypes, including node boxes/nodeboxes and mesh nodes. description: Guide to all drawtypes, including node boxes/nodeboxes and mesh nodes.
redirect_from: /en/chapters/node_drawtypes.html
--- ---
## Introduction ## Introduction

View File

@ -4,6 +4,7 @@ layout: default
root: ../../ root: ../../
idx: 2.1 idx: 2.1
description: Learn how to register node, items, and craft recipes using register_node, register_item, and register_craft. description: Learn how to register node, items, and craft recipes using register_node, register_item, and register_craft.
redirect_from: /en/chapters/nodes_items_crafting.html
--- ---
## Introduction ## Introduction

View File

@ -4,6 +4,7 @@ layout: default
root: ../../ root: ../../
idx: 3.2 idx: 3.2
description: Learn how to make ABMs to change blocks. description: Learn how to make ABMs to change blocks.
redirect_from: /en/chapters/abms.html
--- ---
## Introduction ## Introduction

View File

@ -4,6 +4,7 @@ layout: default
root: ../../ root: ../../
idx: 3.1 idx: 3.1
description: Basic operations like set_node and get_node description: Basic operations like set_node and get_node
redirect_from: /en/chapters/environment.html
--- ---
## Introduction ## Introduction

View File

@ -4,6 +4,7 @@ layout: default
root: ../../ root: ../../
idx: 3.4 idx: 3.4
description: Learn how to use LVMs to speed up map operations. description: Learn how to use LVMs to speed up map operations.
redirect_from: /en/chapters/lvm.html
--- ---
## Introduction ## Introduction

View File

@ -4,6 +4,7 @@ layout: default
root: ../../ root: ../../
idx: 3.3 idx: 3.3
description: Using get_meta to obtain a NodeMetaRef. description: Using get_meta to obtain a NodeMetaRef.
redirect_from: /en/chapters/node_metadata.html
--- ---
## Introduction ## Introduction

View File

@ -4,6 +4,7 @@ layout: default
root: ../../ root: ../../
idx: 4.2 idx: 4.2
description: Registering a chatcommand and handling chat messages with register_on_chat_message description: Registering a chatcommand and handling chat messages with register_on_chat_message
redirect_from: /en/chapters/chat.html
--- ---
## Introduction ## Introduction

View File

@ -4,6 +4,7 @@ layout: default
root: ../../ root: ../../
idx: 4.3 idx: 4.3
description: Use ChatCmdBuilder to make a complex chat command description: Use ChatCmdBuilder to make a complex chat command
redirect_from: /en/chapters/chat_complex.html
--- ---
## Introduction ## Introduction

View File

@ -3,6 +3,7 @@ title: Formspecs
layout: default layout: default
root: ../../ root: ../../
idx: 4.5 idx: 4.5
redirect_from: /en/chapters/formspecs.html
--- ---
## Introduction ## Introduction

View File

@ -3,6 +3,7 @@ title: HUD
layout: default layout: default
root: ../../ root: ../../
idx: 4.6 idx: 4.6
redirect_from: /en/chapters/hud.html
--- ---
## Introduction ## Introduction

View File

@ -3,6 +3,7 @@ title: Player Physics
layout: default layout: default
root: ../../ root: ../../
idx: 4.4 idx: 4.4
redirect_from: /en/chapters/player_physics.html
--- ---
## Introduction ## Introduction

View File

@ -4,6 +4,7 @@ layout: default
root: ../../ root: ../../
idx: 4.1 idx: 4.1
description: Registering privs. description: Registering privs.
redirect_from: /en/chapters/privileges.html
--- ---
## Introduction ## Introduction

View File

@ -3,6 +3,7 @@ title: "SFINV: Inventory Formspec"
layout: default layout: default
root: ../../ root: ../../
idx: 4.7 idx: 4.7
redirect_from: /en/chapters/sfinv.html
--- ---
## Introduction ## Introduction

View File

@ -3,6 +3,7 @@ title: Common Mistakes
layout: default layout: default
root: ../../ root: ../../
idx: 6.1 idx: 6.1
redirect_from: /en/chapters/common_mistakes.html
--- ---
## Introduction ## Introduction

View File

@ -4,6 +4,7 @@ layout: default
root: ../../ root: ../../
idx: 6.2 idx: 6.2
description: Use LuaCheck to find errors description: Use LuaCheck to find errors
redirect_from: /en/chapters/luacheck.html
--- ---
## Introduction ## Introduction

View File

@ -3,6 +3,7 @@ title: Read More
layout: default layout: default
root: ../../ root: ../../
idx: 6.6 idx: 6.6
redirect_from: /en/chapters/readmore.html
--- ---
## List of Resources ## List of Resources

View File

@ -3,6 +3,7 @@ title: Releasing a Mod
layout: default layout: default
root: ../../ root: ../../
idx: 6.5 idx: 6.5
redirect_from: /en/chapters/releasing.html
--- ---
## Introduction ## Introduction