This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
1 |
{% extends "layout.html" %} |
2 |
|
3 |
{% block body %} |
4 |
|
5 |
<ul class="entries unstyled"> |
6 |
<li> |
7 |
<span class="who"> |
8 |
<a href="#"> |
9 |
@{{ sweet.who.username }} |
10 |
</a> |
11 |
</span> |
12 |
<span class="what"> |
13 |
<b> #{{ sweet.what.name }} </b> |
14 |
</span> |
15 |
<span class="where"> |
16 |
{{ sweet.where }} |
17 |
</span> |
18 |
<p></p> |
19 |
<span class="how"> |
20 |
{{ sweet.how|escape|safe }} |
21 |
</span> |
22 |
|
23 |
<small><i>created: {{sweet.created }}</i></small> |
24 |
</li> |
25 |
</ul> |
26 |
|
27 |
{% endblock %} |