review/templates/pieces/comment.html @ c92ca10967c3

web: refactor the templates a bit
author Steve Losh <steve@stevelosh.com>
date Mon, 14 Jun 2010 19:06:46 -0400
parents (none)
children 62c034fdeed2
<div class="comment group">
    <div class="avatar">
        <img src="{{ utils['item_gravatar'](comment, 30) }}" />
    </div>
    <div>
        <div class="author">
            <a href="mailto:{{ utils['email'](comment.author) }}">{{ utils['templatefilters'].person(comment.author) }}</a>
            said:
        </div>
        <div class="message">{{ comment.message }}</div>
    </div>
</div>