Skip to content

Instantly share code, notes, and snippets.

@DevGW
Last active January 5, 2023 22:28
Show Gist options
  • Save DevGW/b84b198ac1609d5fdd94c113b4a8f026 to your computer and use it in GitHub Desktop.
Save DevGW/b84b198ac1609d5fdd94c113b4a8f026 to your computer and use it in GitHub Desktop.
Ruby / Rails :: Nested Arrays #RoR
# Goes in controller
def gallery
@images = Array.new
@images << ["1", "'Baby' by Isleifr - 8x10 Stretched Canvas giclee print. Original: Waterbased Oil on Stretched Canvas"]
@images << ["2", ]
end
# Goes in page
@images.each do |image|
<a class="example-image-link" href="/assets/<%= image[0] %>.png" data-lightbox="example-set" data-title="<%= image[1]"><img class="example-image" src="/assets/<%= image[0] %>thumb.png" alt=""/></a>
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment