aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/extensions/gallery_links/app/views/refinery/gallery_links/gallery_links/index.html.erb
blob: e9121d67a645c9a1b0838b25452a7feda68fb3f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<% content_for :body do %>
  <section id="gallery_links">
    <% @gallery_links.each do |g| %>
      <article class="gallery_link" id="gallery_link_<%= g.id %>">
        <header>
          <h1>
            <%= link_to g.title, g.url %>
          </h1>
          <%= link_to image_tag(g.image.thumbnail(:medium).url), g.url %>
        </header>
        <section class="gallery_link_description">
          <%=raw g.description %>
        </section>
        <section class="gallery_link_meta">
          <div>
            <span class="gallery_link_label">
              <%= t('.photographer') %>:
            </span>
            <span class="gallery_link_photographer">
              <%= g.photographer %>
            </span>
          </div>
          <div>
            <span class="gallery_link_label">
              <%= t('.created') %>:
            </span>
            <time datetime="<%= g.created_at %>">
              <%= l(g.created_at) %>
            </time>
          </div>
        </section>
      </article>
    <% end %>
  </section>
<% end %>

<%= render '/refinery/content_page' %>