- Timestamp:
- 09/17/07 18:48:54 (16 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
bitstructures/trunk/substructure/templates/substructure/base.html
r5 r6 16 16 17 17 <div id="info-block"> 18 <div id="about"> 18 19 <div class="info-entry"> 19 20 <h2>About me</h2> 20 21 <p>Simon builds and designs web apps and infrastructure. … … 23 24 <p><a href="http://del.icio.us/simonbates">del.icio.us/simonbates</a></p> 24 25 </div> 26 27 {% if drafts %} 28 <div id="drafts" class="info-entry"> 29 <h2>Drafts</h2> 30 <ul> 31 {% for entry in drafts %} 32 <li><a href="{{ entry.get_absolute_url }}">{{ entry.title|escape }}</a></li> 33 {% endfor %} 34 </ul> 35 <p><a href="/admin/substructure/entry/add/">new entry</a></p> 36 </div> 37 {% endif %} 38 25 39 </div> 26 40
