index.view 952 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. @Title{Gallery}@
  2. @CSS{
  3. .album{
  4. width:33.33%;
  5. /*float:left;*/
  6. display:inline-block;
  7. vertical-align:top;
  8. }
  9. .album>div{
  10. margin:5px;
  11. padding:5px;
  12. background:#e0e0e0;
  13. }
  14. .album span{
  15. display:block;
  16. text-align:center;
  17. color:#424242;
  18. overflow:hidden;
  19. }
  20. }@
  21. @CSSMed{
  22. @media(orientation:portrait){
  23. .album{
  24. width:50%;
  25. }
  26. }
  27. }@
  28. @CSSSmall{
  29. @media(orientation:portrait){
  30. .album{
  31. width:100%;
  32. }
  33. }
  34. @media(orientation:landscape){
  35. .album{
  36. width:50%;
  37. }
  38. }
  39. }@
  40. @ButtonsRight{
  41. <button onclick="Navigate('/gallery/manage/')" title="Manage">
  42. <img src="/images/gallery.svg" alt="Manage" />
  43. </button>
  44. }@
  45. @Body{
  46. <?php foreach ($albums as $album){
  47. echo '<div class="album"><div><a href="/gallery/view/',$album->AlbumUrl,'/"><img src="http://uploads.robware.co.uk/Phone%20Camera/IMG_20141209_075310.jpg" /></a><span>',$album->AlbumTitle,'</span></div></div>';
  48. }?>
  49. }@