I am currently learning how to make website at Google App Engine with Python 2.7 and Jinja2, and I was wondering is it possible to make two separate HTML files that will make one file.
In main HTML file I want to have basic layout of page (this HTML has main menu, header, footer, …), and in the other HTML file I want to have a more detailed look (HTML file for main page, HTML page for posts, …).
Sorry I am not a native english speaker, so sorry if I wrote question bad.
Thanks.
As you already noticed (by the jinja2 tag) what you want is some template engine. For jinja2 see the examples in the GAE docs. Additionally, in this post there are examples for some other template engines that work on GAE.