1
0
Fork 0
forked from wezm/wezm.net
wezm.net/layouts/articles.html

47 lines
1.3 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<%= render '_head' %>
</head>
<body class="articles">
<%= render '_header' %>
<div id="content">
<h1>Archives</h1>
2010-01-30 06:09:05 +00:00
<%
menu = [
['All', sorted_articles.size],
['Technical', technical_articles.size],
['Personal', personal_articles.size],
]
%>
<nav class="inline search">
<li id="search">
<fieldset>
<label for="query">Search</label>
<input id="query" type="search" incremental="" results="0" placeholder="Search Articles">
</fieldset>
</li>
<% menu.each do |menu_item|
label, count = menu_item
path = (label != "All" ? '/' + label.downcase : '') + "/articles/"
2010-04-01 07:24:05 +00:00
feed = 'http://feeds.feedburner.com/wezm'
feed += "-#{label.downcase}" if label != "All"
2010-02-03 10:53:58 +00:00
active = (@item.identifier.sub(%r{page/$}, '') == path)
%>
2010-03-30 21:03:04 +00:00
<li>
2010-06-16 10:23:22 +00:00
<a href="<%= feed %>"><img class="feed-icon" src="/images/black-feed-icon.png" width="12" height="12" alt="Black Feed Icon" /></a>
2010-03-30 21:03:04 +00:00
<a href="<%= path %>"<%= %Q{class="active"} if active %>><%= label %></a> (<%= count %>)
</li>
<% end %>
2010-06-30 07:56:37 +00:00
</nav>
2010-01-30 06:09:05 +00:00
2010-06-16 10:23:22 +00:00
<ul id="articles" class="articles">
<%= yield %>
</ul>
2010-01-30 06:09:05 +00:00
</div>
<%= render '_footer' %>
</body>
</html>