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> <h1><a href="<%= @item.identifier %>"><%= @item[:title]%></a></h1> <% unless @item[:subtitle].blank? then %> <h2><%= @item[:subtitle] %></h2> <% end %> <p class="pubdate pull-right"><i class="fa fa-calendar"></i> <time datetime="<%= @item[:date].to_iso8601_time %>"><%= @item[:date].strftime("%A, %B %d %Y") %></time></p> <div class="clearfix"></div> </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 %> <p><a href="<%= @item.identifier %>">Continue reading →</a></p> </section> <hr /> </article> |