parsley/app/views/notes/show.html.erb

16 lines
233 B
Plaintext
Raw Normal View History

2016-10-14 12:19:00 -05:00
<div class="row">
<div class="col-xs-12">
<div class="page-header">
<h1>Note</h1>
</div>
<p>
<%= @note.content %>
</p>
<%= link_to 'Back', notes_path, class: 'btn btn-default' %>
</div>
</div>