Skip to content

Instantly share code, notes, and snippets.

View erjohnson's full-sized avatar
📝

Eric Johnson erjohnson

📝
View GitHub Profile
@erjohnson
erjohnson / index.erb
Created February 10, 2015 21:38
Jot Text Editor Views
<div class="row">
<a class="button button-primary" href="/new">New</a>
</div>
<hr/>
<div class="row">
<ul>
<% @list.each do |doc| %>
<li><a href="/document/<%= doc['path']['key'] %>"><%= doc['value']['title'] %></a></li>
<% end %>
</ul>