<% 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>
    <h4 class="panel-title pull-right" style="font-size: 10px;">在籍中にダウンロードして下さい。</h4>
    </div>
    <div class="panel-body">
    <table class="table table-hover">
      <thead>
      <tr>
          <th>TITLE</th>
      </tr>
      </thead>
      <tbody>
      <% @homeworks.each do |homework| %>
        <tr>
          <td><%= link_to homework.title, homework.file_path, :target => '_blank' %></td>
        </tr>
      <% end %>
      </tbody>
    </table>
  </div>
</div>

