Ordering basic page includes
By default page includes will be ordered on the page according to when they were added to the page. However, you can set the order of page includes by appending '**order:[number to appear on the page]' to your include tag.
So for example if I have to includes on a page:
include:my_sign_up_form, include:about_us_intro
And I want to guarantee that the 'about_us_intro' include appears first on the page, I can append the order to the tags like this:
include:my_sign_up_form**order:2, include:about_us_intro**order:1
