<% content_for :title do %>リンク集<% end %>

<ol class="breadcrumb pull-right">
  <li><%= link_to 'TOP', top_path %></li>
  <li class="active">リンク集</li>
</ol>

<h1 class="page-header">リンク集</h1>
<div class="panel panel-inverse">
  <div class="panel-heading">
    <h4 class="panel-title fl">リンク集</h4>
  </div>
  <div class="panel-body">
    <table class="table table-hover">
      <thead>
      <tr>
          <th>TITLE</th>
          <th>COMMENT</th>
      </tr>
      </thead>
      <tbody>
      <% @recommended_references.each do |recommended_reference| %>
        <tr>
          <td><%= link_to recommended_reference.title, recommended_reference.url, :target => '_blank' %></td>
          <td><%= recommended_reference.comment %></td>
      </tr>
      <% end %>
      </tbody>
    </table>
    <%= paginate @recommended_references %>
  </div>
</div>
