summaryrefslogtreecommitdiff
path: root/app/views/custom/partials/_article.html.erb
blob: 2a76bdcce590e9a44580676a2c37d703f746a944 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="article_partial" lang="<%= page.effective_lang %>">
  <h2 class="headline"><%= link_to_path page.title, page.node.unique_name %></h2>
  <div class="author_and_date">
    <%= date_for_page page %>, <%= author_for_page page %>
  </div>
  <div class="article_partial_layout">
    <% if (headline = page.headline_asset) && headline.has_variant?(:medium) %>
      <div class="article_thumbnail">
        <%= link_to_path image_tag(headline.upload.url(:medium), :alt => ""), page.node.unique_name %>
      </div>
    <% end %>
    <p class="excerpt"><%= page.abstract %> <%= link_to_path t(:more), page.node.unique_name %></p>
  </div>
</div>