all repos — h3rald @ 8.0.0

The sources of https://h3rald.com

layouts/article_item.erb

 1
 2
 3
 4
 5
 6
 7
 8
 9
-----
filter: erb
-----
<div class="article-item"> 
	<h4><a href="/articles/<%= @article.attributes[:permalink]%>/"><%= @article.attributes[:title]%></a></h4><% unless (@article.attributes[:tags].empty?) then %>
		<%= render 'article_meta', :article => @article %>
	<% end %><%	if (@article.attributes[:summary] && !@no_summary) then %><div class="article-summary"><%= @article.attributes[:summary] %>
	</div><% end %>
</div>