Created
May 3, 2012 12:29
-
-
Save jmijdam/2585326 to your computer and use it in GitHub Desktop.
Django Template example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% extends "base_generic.html" %} | |
| {% block title %}{{ section.title }}{% endblock %} | |
| {% block content %} | |
| <h1>{{ section.title }}</h1> | |
| {% for story in story_list %} | |
| <h2> | |
| <a href="{{ story.get_absolute_url }}"> | |
| {{ story.headline|upper }} | |
| </a> | |
| </h2> | |
| <p>{{ story.tease|truncatewords:"100" }}</p> | |
| {% endfor %} | |
| {% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment