minetest_modding_book/sitemap.json

33 lines
745 B
JSON
Raw Normal View History

2018-06-27 14:55:59 -07:00
---
---
2018-07-15 07:28:10 -07:00
{% assign pages = site.en | sort: "idx" %}
2018-06-27 14:55:59 -07:00
[
2018-07-15 07:28:10 -07:00
{% for link in pages %}
2018-06-27 14:55:59 -07:00
{
2018-07-15 07:28:10 -07:00
"idx": {{ link.idx }},
2018-06-27 14:55:59 -07:00
"title": "{{ link.title }}",
"loc": "https://rubenwardy.com/minetest_modding_book/en/{{ link.link }}",
2018-06-27 15:14:43 -07:00
{% if link.description %}
"description": "{{ link.description }}",
{% endif %}
2018-06-27 14:55:59 -07:00
"priority": 1
{% if link.num %}, "chapter_number": {{ link.num }}{% endif %}
},
{% endfor %}
{
"title": "Lua Modding API Reference",
"loc": "https://rubenwardy.com/minetest_modding_book/lua_api.html",
2018-06-27 15:14:43 -07:00
"description": "lua_api.html is an HTML version of lua_api.txt",
2018-06-27 14:55:59 -07:00
"priority": 0.75
},
{
"title": "Download Examples",
"loc": "https://github.com/rubenwardy/minetest_modding_book/archive/examples.zip",
"priority": 0.5
}
]