mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
31 lines
878 B
Plaintext
31 lines
878 B
Plaintext
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
<div class="card" style="overflow: visible">
|
|
<h1 class="card-heading simple">
|
|
Your characters
|
|
<% if Universe.where(user_id: session[:user]).length > 0 %>
|
|
<small>from <%= universe_filter %></small>
|
|
<% end %>
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
|
|
<%= render 'list' %>
|
|
|
|
<div class="col-md-3">
|
|
<div class="card">
|
|
<h1 class="card-heading">Planning characters</h1>
|
|
<div class="card-body">
|
|
<p>
|
|
Consistency is sometimes hard to keep, and having a reference of everything about your character for yourself can help you down the line, especially if you're writing a series.
|
|
</p>
|
|
</div>
|
|
<div class="card-comments">
|
|
<%= link_to 'New character', character_create_path, :class => 'btn btn-primary' %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|