|
Revision 74, 402 bytes
(checked in by simon, 6 months ago)
|
|
Implemented tagging.
Switched to arrows for the "Newer | Older" navigation.
Removed special behaviour for logged in users.
|
| Line | |
|---|
| 1 | {% load substructure_tags %} |
|---|
| 2 | |
|---|
| 3 | <div class="entry"> |
|---|
| 4 | |
|---|
| 5 | <h2><a href="{{ entry.get_absolute_url }}">{{ entry.title|escape }}</a></h2> |
|---|
| 6 | |
|---|
| 7 | <p class="entry-info">{% if entry.date_published %}{{ entry.date_published|date:"F j, Y" }}<br>{% endif %}Tags: |
|---|
| 8 | {% for tag in entry.tags %}<a href="{{ tag.get_absolute_url }}">{{ tag.name|escape }}</a> |
|---|
| 9 | {% endfor %}</p> |
|---|
| 10 | |
|---|
| 11 | {{ entry.text|syntax_highlighted_markdown }} |
|---|
| 12 | |
|---|
| 13 | </div> |
|---|