all repos — h3rald @ 27f1ff171fb24326ce070d6f7d43cb322d88d8b2

The sources of https://h3rald.com

layouts/article_item.erb

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
-----
filter: erb
-----
<div class="article-item"> 
	<h4><a href="/articles/<%= @article.attributes[:permalink]%>/"><%= @article.attributes[:title]%></a></h4><% unless (@article.attributes[:tags].empty?) then %>
		<div class="date"><%= @article.attributes[:date].strftime("%A, %d %B %Y") %></div>
		<div><%=	@article.attributes[:tags].map{ |t| %{<span class="tag"><a href="/tags/#{t}/">#{t}</a></span>} }.join(" &middot; ") %>
	</div>
	<% end %><%	if (@article.attributes[:summary] && !@no_summary) then %><div class="article-summary"><%= @article.attributes[:summary] %>
	</div><% end %>
</div>