all repos — h3rald @ cb9ac76cb9caa1dd0ccb10217cf3f99d547888ee

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="/">
      <span class="logo">
        <span class="hrald"><span class="h">H</span>&nbsp;<span class="rald">RALD</span></span>
        <span class="three">3</span>
      </span>
		</a>
	</nav>
	<% if link then %>
	<nav class="section">
		/<%= link %>
	</nav>
	<% end %>
</header>