Skip to content

Instantly share code, notes, and snippets.

@tsloughter
Created September 10, 2010 02:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsloughter/572981 to your computer and use it in GitHub Desktop.
Save tsloughter/572981 to your computer and use it in GitHub Desktop.
{% extends "base.tpl" %}
{% block content %}
{% block title %}{{ m.rsc[id].title }}{% endblock %}
{% block chapeau %}
{% include "_article_chapeau.tpl" %}
{% endblock %}
{% block content %}
<h1 class="blog">{{ m.rsc[id].title }}</h1>
<p class="summary">
{{ m.rsc[id].summary }}
</p>
<div class="blog_entry">
{{ m.rsc[id].body }}
</div>
<section id="comments">{% include "_comments.tpl" id=id %}</section>
{% include "_article_prevnext.tpl" id=id %}
{% endblock %}
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment