<% title_tag t('plugin.note') %>
<%= t('plugin.note') %> 已有 <%= current_user_notes.count %> 条 Note
<% if @notes.blank? %>
你还没有创建过一个文件。
<% else %> <% @notes.each do |note| %>
<%= link_to note.display_title, note %> <% if note.publish %> 公开 <% end %>
<%= note.word_count %> 个字符, 创建于 <%= timeago(note.created_at) %>, <%= note.changes_count %> 次编辑
<% end %> <% end %>
<%= render "sidebar" %>