π Template Designer Documentation β Jinja Documentation βββββββββββββββββββββββββββββββββββββββββββββββββββββββ !https://jinja.palletsprojects.com/en/3.1.x/templates/#include Date: July 28, 2023 Template Designer Documentation β Jinja Documentation (3.1.x) jinja.palletsprojects.com A feature of jinja that I just discovered is including sub templates. Here is an example from the docs. ``` {% include 'header.html' %} Body goes here. {% include 'footer.html' %} ``` And inside of my thoughts project I used it to render posts. ```