Created
September 10, 2010 02:45
-
-
Save tsloughter/572981 to your computer and use it in GitHub Desktop.
This file contains 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.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