Sha256: 5e049121bd2c48a8ece85f69e736ae96303d88933d62162bb509e6acc873644b
Contents?: true
Size: 1.66 KB
Versions: 8
Compression:
Stored size: 1.66 KB
Contents
<%= render :partial => "notee/partials/header.html.erb" %> <div class="notee_wrapper"> <div class="notee_main"> <h2><%= @notee_title %></h2> <% @posts.each do |post| %> <div class="notee_list"> <!-- title --> <a href="/<%= post.slug %>"> <h3><%= post.title %></h3> </a> <div class="notee_list_meta"> <!-- publish--> <span class="notee_list_meta_content"> <%= post.published_at.strftime("%Y/%m/%d") %>, </span> <!-- writer --> <span class="notee_list_meta_content"> writer: <a href="/writers/<%= post.user.name %>"><%= post.user.name %></a> </span> </div> <div class="notee_list_content"> <!--thumbnail--> <a href="/<%= post.slug %>"> <img src="/notee/<%= post.thumbnail.content %>"> </a> <!-- content --> <div class="notee_list_content_p"> <a href="/<%= post.slug %>"> <p><%= post.seo_description %></p> </a> </div> </div> <div class="notee_list_meta"> <!-- category --> <span class="notee_list_meta_content"> category: <span class="notee_list_meta_content notee_list_category"> <a href="/categories/<%= post.category.slug %>"><%= post.category.name %></a> </span> </span> </div> </div> <% end %> </div> <%= render :partial => "notee/partials/sidebar.html.erb" %> </div> <%= render :partial => "notee/partials/footer.html.erb" %>
Version data entries
8 entries across 8 versions & 1 rubygems