This commit is contained in:
karl 2013-08-03 23:06:11 -07:00
commit f443eafcf4

View file

@ -90,12 +90,16 @@ For reStructuredText, this metadata should of course be prefixed with a colon::
:Modified: 2012-08-08
This metadata can then be accessed in the template::
This metadata can then be accessed in templates such as ``article.html`` via::
{% if article.modified %}
Last modified: {{ article.modified }}
{% endif %}
If you want to include metadata in templates outside the article context (e.g., ``base.html``), the ``if`` statement should instead be:
{% if article and article.modified %}
How do I assign custom templates on a per-page basis?
=====================================================