index.view 783 B

123456789101112131415161718192021222324252627282930313233343536
  1. @Title{Gallery}@
  2. @CSS{
  3. <?= file_get_contents("css/gallery.css") ?>
  4. }@
  5. @CSSMed{
  6. @media(orientation:portrait){
  7. .album{
  8. width:50%;
  9. }
  10. }
  11. }@
  12. @CSSSmall{
  13. @media(orientation:portrait){
  14. .album{
  15. width:100%;
  16. }
  17. }
  18. @media(orientation:landscape){
  19. .album{
  20. width:50%;
  21. }
  22. }
  23. }@
  24. @ButtonsRight{
  25. <?php if (Session::GetLoggedInUser()->HasAccess("gallery/manage")){?>
  26. <button onclick="Navigate('/gallery/manage/')" title="Manage">
  27. <img src="/images/gallery.svg" alt="Manage" />
  28. </button>
  29. <?php } ?>
  30. }@
  31. @Body{
  32. <?php foreach ($albums as $album){
  33. echo '<div class="album"><div><a href="/gallery/view/',$album->AlbumUrl,'/"><img src="/',$album->Images[0]->ThumbnailPath,'" /></a><span>',$album->AlbumTitle,'</span></div></div>';
  34. }?>
  35. }@