Albums.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. // this file contains the data we need for the gallery
  2. // The main object, "gallery" contains an array of album
  3. // each album contains an array of photos
  4. // (plus a name and a thumbnail image)
  5. // The photos contain an image src and some metadata
  6. var gallery = {
  7. albums: [
  8. {
  9. name: "Travels",
  10. thumbnail: "images/img_1.jpg",
  11. photos: [
  12. {
  13. src: "images/img_1.jpg",
  14. title: "grafitti",
  15. description: "some derelict appartments with grafitti"
  16. },
  17. {
  18. src: "images/img_6.jpg",
  19. title: "fountain",
  20. description: "a huge dragon fountain"
  21. },
  22. {
  23. src: "images/img_7.jpg",
  24. title: "tower",
  25. description: "a colourful tower block"
  26. },
  27. {
  28. src: "images/img_8.jpg",
  29. title: "walkways",
  30. description: "an interesting interior"
  31. }
  32. ]
  33. },
  34. {
  35. name: "Equipment",
  36. thumbnail: "images/img_4.jpg",
  37. photos: [
  38. {
  39. src: "images/img_4.jpg",
  40. title: "syths",
  41. description: "all workshops should aspire to being this tidy"
  42. },
  43. {
  44. src: "images/img_9.jpg",
  45. title: "helmet",
  46. description: "a sci-fi helmet"
  47. },
  48. {
  49. src: "images/img_12.jpg",
  50. title: "drums",
  51. description: "a rather nice drum kit"
  52. }
  53. ]
  54. },
  55. {
  56. name: "English Winter",
  57. thumbnail: "images/img_17.jpg",
  58. photos: [
  59. {
  60. src: "images/img_16.jpg",
  61. title: "dog in the snow",
  62. description: "looks like he needs that jacket"
  63. },
  64. {
  65. src: "images/img_17.jpg",
  66. title: "winter",
  67. description: "a snowy scene in a park"
  68. },
  69. {
  70. src: "images/img_18.jpg",
  71. title: "frosty pond",
  72. description: "some ducks feeling cold"
  73. }
  74. ]
  75. }
  76. ]
  77. };