all repos — h3rald @ b71c0c77d3e0fc2453da3782101d1050eedd19d3

The sources of https://h3rald.com

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
-----
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="icon-calendar"></i> <time datetime="<%= @item[:date].strftime("%FT%T%:z") %>"><%= @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 %> 
	</section>
  <hr />
</article>