django/docs/ref/templates/index.txt
Aymeric Augustin 6c392bb2c0 Moved doc on the DTL's syntax to the ref/ section.
This makes room for a more general introduction about templating.

Updated some links to point to the new location, but kept those that
didn't talk specifically about the DTL.
2015-01-10 19:41:14 +01:00

21 lines
576 B
Text

=========
Templates
=========
Django's template engine provides a powerful mini-language for defining the
user-facing layer of your application, encouraging a clean separation of
application and presentation logic. Templates can be maintained by anyone with
an understanding of HTML; no knowledge of Python is required. For introductory
material, see :doc:`/topics/templates` topic guide.
.. toctree::
:maxdepth: 2
language
builtins
api
.. seealso::
For information on writing your own custom tags and filters, see
:doc:`/howto/custom-template-tags`.