index.view 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. @Title{Blog}@
  2. @CSS{
  3. <?= file_get_contents("css/blog.css") ?>
  4. }@
  5. @ButtonsLeft{
  6. <?php if ($page>1){?>
  7. <button onclick="window.location.href='/blog/page/<?=$page-1?>'" title="Previous Page">
  8. <img src="/images/previous.svg" alt="Previous" />
  9. </button>
  10. <?php }?>
  11. }@
  12. @ButtonsRight{
  13. <?php if (Session::GetLoggedInUser()->HasAccess("gallery/manage")){?>
  14. <button onclick="window.location.href='/blog/manage'" title="Manage">
  15. <img src="/images/library.svg" alt="Library" />
  16. </button><br/>
  17. <?php }
  18. if ($page<$maxPages) { ?>
  19. <button onclick="window.location.href='/blog/page/<?=$page+1?>'" title="Next Page">
  20. <img src="/images/next.svg" alt="Next" />
  21. </button>
  22. <?php } ?>
  23. }@
  24. @Body{
  25. <?php foreach ($posts as $post){ ?>
  26. <h2><a href="/blog/view/<?=$post->PostUrl?>"><?=$post->PostTitle?></a></h2>
  27. <?=PostFormatter::FormatToHTML(PostFormatter::CloseOpenTag($post->GetPostPreview()))?>
  28. <small>Posted on <?=date("l \\t\h\\e jS \of F Y",strtotime($post->PostTimestamp))?></small>
  29. <p><a href="/blog/view/<?=$post->PostUrl?>">Read more...</a></p>
  30. <?php } ?>
  31. }@