BioTorrents.de’s version of Gazelle
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213141516 |
- <div class="thin">
- {% for entry in list %}
- <div id="blog{{ entry.id }}" class="box box2 blog_post">
- <div class="head">
- <strong>{{ entry.title }}</strong> - posted {{ entry.created|time_diff }} by {{ entry.author }}
- {% if editor %}
- - <a href="staffblog.php?action=editblog&id={{ entry.id }}" class="brackets">Edit</a>
- <a href="staffblog.php?action=deleteblog&id={{ entry.id }}&auth={{ auth }}" onclick="return confirm('Do you want to delete this?');" class="brackets">Delete</a>
- {% endif %}
- </div>
- <div class="pad">
- {{ entry.body|bb_format }}
- </div>
- </div>
- {% endfor %}
- </div>
|