ifmeorg/ifme

View on GitHub
app/views/pages/press.html.erb

Summary

Maintainability
Test Coverage
<% title t('navigation.press') %>

<div class="gridThree">
<% @press.each do |p| %>
  <div class="gridThreeItem">
  <%= react_component('Resource', props: {
    external: true,
    title: p['link_name'],
    link: p['link'],
    author: p['author']
  }) %>
  </div>
<% end %>
</div>