posts.tx 836 B

1234567891011121314151617181920212223
  1. <p class="title">
  2. <a title="RSS" class="rss" href="<: $route :>?format=rss"></a>
  3. <: $category :> (<: $date :>):
  4. </p>
  5. : for $posts -> $post {
  6. <hr>
  7. <h3 class='blogtitles'>
  8. <a href='<: $post.href :>'><: $post.title :></a>
  9. <a class='usericon <: $post.user :>' title='Posted by <: $post.user :>'></a>
  10. </h3>
  11. : $post.data | mark_raw;
  12. : if ( $can_edit ) {
  13. <br />
  14. <a style="display: inline-block;" onclick="switchMenu('<: $post.id :>');">[Edit]</a>
  15. <div id="<: $post.id :>" style="display:none;">
  16. : include $post.type ~ ".tx";
  17. <form class="Submissions" action="/post/delete" class="inline">
  18. <input type="hidden" name="id" value="<: $post.id :>"></input>
  19. <input class="coolbutton" type="submit" value="Delete"></input>
  20. </form>
  21. </div>
  22. : }
  23. : }