all repos — h3rald @ 8.1.0

The sources of https://h3rald.com

layouts/page_header.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
 26
 27
 28
 29
 30
 31
-----
filter: erb
-----
<% 
link = nil
case
when @item[:section] then
	section = @item[:section]
	link = link_for_tag @item[:section].upcase, "/tags/"
when !@item[:tags].blank? then
	link = link_for_tag @item[:tags][0].upcase, "/tags/"
when @item[:type] == 'project' then
	link = %{<a href="/projects/" rel="archives">PROJECTS</a>}
else
	link = %{<a href="/archives/" rel="archives">ARCHIVES</a>}
end
%><header class="page">
	<nav class="home-link">
		<a href="/">
			<img src="/images/h3rald_small.png" alt="H3RALD" class="default"/>
			<![if !IE]>
			<img src="/images/h3rald_hover_small.png" alt="H3RALD" class="hover"/>
			<![endif]>
		</a>
	</nav>
	<% if link then %>
	<nav class="section">
		/<%= link %>
	</nav>
	<% end %>
</header>