Changeset 74 for bitstructures/trunk/templates/substructure/entry.html
- Timestamp:
- 05/28/08 20:22:40 (7 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
bitstructures/trunk/templates/substructure/entry.html
r42 r74 5 5 <h2><a href="{{ entry.get_absolute_url }}">{{ entry.title|escape }}</a></h2> 6 6 7 {% if entry.date_published %} 8 <p class="entry-date">{{ entry.date_published|date:"F j, Y" }}</p> 9 {% endif %} 10 11 {% if user_can_change_entry %} 12 <p><a href="/admin/substructure/entry/{{ entry.id }}/">edit</a></p> 13 {% endif %} 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> 14 10 15 11 {{ entry.text|syntax_highlighted_markdown }}
