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.

list.twig 684B

12345678910111213141516
  1. <div class="thin">
  2. {% for entry in list %}
  3. <div id="blog{{ entry.id }}" class="box box2 blog_post">
  4. <div class="head">
  5. <strong>{{ entry.title }}</strong> - posted {{ entry.created|time_diff }} by {{ entry.author }}
  6. {% if editor %}
  7. - <a href="staffblog.php?action=editblog&amp;id={{ entry.id }}" class="brackets">Edit</a>
  8. <a href="staffblog.php?action=deleteblog&amp;id={{ entry.id }}&amp;auth={{ auth }}" onclick="return confirm('Do you want to delete this?');" class="brackets">Delete</a>
  9. {% endif %}
  10. </div>
  11. <div class="pad">
  12. {{ entry.body|bb_format }}
  13. </div>
  14. </div>
  15. {% endfor %}
  16. </div>