Skip to content

Instantly share code, notes, and snippets.

@jmijdam
Created May 3, 2012 12:29
Show Gist options
  • Select an option

  • Save jmijdam/2585326 to your computer and use it in GitHub Desktop.

Select an option

Save jmijdam/2585326 to your computer and use it in GitHub Desktop.
Django Template example
{% 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