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 |
-----
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>
<h1><a href="<%= @item.identifier %>"><%= @item[:title]%></a></h1>
<% unless @item[:subtitle].blank? then %>
<h2><%= @item[:subtitle] %></h2>
<% end %>
<p class="pubdate"><time datetime="<%= @item[:date].strftime("%Y-%m-%d") %>" pubdate="pubdate"><%= @item[:date].strftime("%A, %B %d %Y") %></time></p>
</header>
<section 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 %>
<a class="read" href="<%=@item.identifier%>">Read More</a>
</section>
</article>
|