all repos — h3rald @ cc42c5ceb459bce4569251a8741109b870081858

The sources of https://h3rald.com

layouts/page_meta.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"
	pdf = %{<a href="/articles/#{@item[:permalink]}.pdf">PDF</a>} if @item[:pdf]
	tools = %{<span class="tools">#{pdf}</span>}
%><header>
	<hgroup>
		<h1><%= @item[:title] %></h1>
		<% if !@item[:subtitle].blank? then %>
			<h2><%= @item[:subtitle] %></h2>
		<% end %>
	</hgroup>
	<% if @item[:type] == 'article' then %>
	<p class="toolbar">
		<span class="pubdate">
			Published on <time datetime="<%= @item[:date].strftime("%Y-%d-%d") %>" pubdate="pubdate"><%= @item[:date].strftime("%A, %B %d %Y") %></time>
		</span>
		<%= tools if pdf %>
	</p>
	<nav class="tags"><%= tags_for(@item) %></nav>
	<p class="author">By <em><%= author %></em></p>
	<% end %>
</header>