Blog

<%= form_tag '#', method: :get, class: 'inline-form' do %> <%= text_field_tag :search, params[:search], class: 'form-control inline-form' %> <% end %> <% @articles.each do |post| %>
<% unless post.image.nil? %>
<%= image_tag post.image.file %>
<% end %>

<%= post.title %>

Posted <%= post.created_at.strftime("%B %d") %>

<%= truncate(post.content, length: 200) %>

<%= link_to 'Read More', article_path(post) %>
<% post.tags.each do |tag| %> <%= link_to tag, articles_path(search: tag), class: 'btn btn-default btn-xs' %> <% end %>
<% end %>