模板并非只有HTML。模版是纯文本文件,可以生成任何基于文本的文件格式,比如HTML,XML,CSV等。

    1. {% extends "base_generic.html" %}…………………………………………………………………… 模板继承
    2. {% block title %}{{ section.title }}{% endblock %}
    3. {% block content %}
    4. <h1>{{ section.title }}</h1>
    5. {% for story in story_list %}…………………………………………………………………… {% for...in... %}标签
    6. <h2>
    7. <a href="{{ story.get_absolute_url }}">
    8. {{ story.headline|upper }} ………………………………………… upper过滤器
    9. </a>
    10. </h2>
    11. <p>{{ story.tease|truncatewords:"100" }}</p>
    12. {% endfor %}
    13. {% endblock %}