refactored documentation

This commit is contained in:
Fabien Potencier
2011-09-26 23:40:44 +02:00
parent d65366e772
commit b096e21daa
53 changed files with 1705 additions and 1273 deletions
+34
View File
@@ -0,0 +1,34 @@
``date``
========
.. versionadded:: 1.1
The timezone support has been added in Twig 1.1.
The ``date`` filter formats a date to a given format:
.. code-block:: jinja
{{ post.published_at|date("m/d/Y") }}
The ``date`` filter accepts any date format supported by `date`_ and
`DateTime`_ instances. For instance, to display the current date, filter the
word "now":
.. code-block:: jinja
{{ "now"|date("m/d/Y") }}
To escape words and characters in the date format use ``\\`` in front of each character:
.. code-block:: jinja
{{ post.published_at|date("F jS \\a\\t g:ia") }}
You can also specify a timezone:
.. code-block:: jinja
{{ post.published_at|date("m/d/Y", "Europe/Paris") }}
.. _`date`: http://www.php.net/date
.. _`DateTime`: http://www.php.net/manual/en/datetime.construct.php