layouts/article_intro.erb
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
-----
filter: erb
-----
<%
author = @item[:author] || "Fabio Cevasco"
intro = @extended ? @item[:intro].to_s+"\n\n"+@item[:extended_intro].to_s : @item[:intro]
%><article id="a_<%= @item[:permalink] %>">
<header>
<h2><a href="<%= @item.identifier %>"><%= @item[:title]%></a></h2>
<% unless @item[:subtitle].blank? then %>
<h3><%= @item[:subtitle] %></h3>
<% end %>
<p class="pubdate pull-right"><i class="h3-quill-ink"></i> <time datetime="<%= @item[:date].to_iso8601_time %>"><%= @item[:date].strftime("%A, %B %d %Y") %></time></p>
<div class="clearfix"></div>
</header>
<div class="<%= @classes %>">
<% if @item[:image] && @extended then %>
<img src="<%=@item[:image]%>" style="float:left; margin: 0 10px 10px 0;" alt="#" />
<% end %>
<%= RedCloth.new(intro.to_s).to_html %>
<p><a href="<%= @item.identifier %>">Continue reading →</a></p>
</div>
<hr />
</article>
|