17 lines
468 B
Plaintext
17 lines
468 B
Plaintext
|
|
<% content_for :title, "Schools" %>
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<h1 class="mb-4">Schools</h1>
|
|
<div id="schools">
|
|
<% @schools.each do |school| %>
|
|
<%= render school %>
|
|
<p>
|
|
<%= link_to "Show this school", school, class: "btn btn-outline-primary btn-sm" %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
<%= link_to "New school", new_school_path, class: "btn btn-primary mt-3" %>
|
|
</div>
|
|
</div>
|