Sha256: a5e6ef1632f7835acd863ec668e77d9cdecb9f1a0828a5850645ff4651cb619d

Contents?: true

Size: 379 Bytes

Versions: 2

Compression:

Stored size: 379 Bytes

Contents

--- |
<% 
  tag_links = []
  post.tags.each do |tag| 
    tag_links << link_to(tag, :tag=>tag)
  end
%>
<div class="entry">
  <h3><%= (from != :post) ? link_to(post.title, :post=>post) : post.title %></h3>
  <div class="meta">
    Posted <%= post.publish_date %>, tagged: <%= tag_links.join(', ') %>.
  </div>
  <div class="body">
    <%= render :content=>post %>
  </div>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bloggit-1.0.3 lib/bloggit/boilerplate/themes/default/templates/snippets/blog_entry.rhtml
bloggit-1.0.7 lib/bloggit/boilerplate/themes/default/templates/snippets/blog_entry.rhtml