Skip to content

Commit

Permalink
Merge pull request #1770 from asalani93/as_emergency_tutorial_fix
Browse files Browse the repository at this point in the history
Fixes tutorial index from breaking
  • Loading branch information
kcarcia committed Sep 12, 2014
2 parents 53e7f7a + 369167f commit 0015998
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/views/shared/_article_box.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
<div class="article_page_subtitle truncate"><%= brief %></div>
<div class="article_page_date">Written on <%= date %></div>
<div class="article_page_content truncate">
<%= content.html_safe %>
<% if content != nil %>
<%= content.html_safe %>
<% end %>
<div class="article_page_link"><%= link_to "Read More", path %></div>
</div>
</div>
Expand Down

0 comments on commit 0015998

Please sign in to comment.