blog init
This commit is contained in:
38
source/blog/layout.erb
Normal file
38
source/blog/layout.erb
Normal file
@ -0,0 +1,38 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv='X-UA-Compatible' content='IE=edge;chrome=1' />
|
||||
<title>Blog Title<%= ' - ' + current_article.title unless current_article.nil? %></title>
|
||||
<%= feed_tag :atom, "#{blog.options.prefix.to_s}/feed.xml", title: "Atom Feed" %>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="main" role="main">
|
||||
<%= yield %>
|
||||
</div>
|
||||
|
||||
<aside>
|
||||
<h2>Recent Articles</h2>
|
||||
<ol>
|
||||
<% blog.articles[0...10].each do |article| %>
|
||||
<li><%= link_to article.title, article %> <span><%= article.date.strftime('%b %e') %></span></li>
|
||||
<% end %>
|
||||
</ol>
|
||||
|
||||
<h2>Tags</h2>
|
||||
<ol>
|
||||
<% blog.tags.each do |tag, articles| %>
|
||||
<li><%= link_to "#{tag} (#{articles.size})", tag_path(tag) %></li>
|
||||
<% end %>
|
||||
</ol>
|
||||
|
||||
<h2>By Year</h2>
|
||||
<ol>
|
||||
<% blog.articles.group_by {|a| a.date.year }.each do |year, articles| %>
|
||||
<li><%= link_to "#{year} (#{articles.size})", blog_year_path(year) %></li>
|
||||
<% end %>
|
||||
</ol>
|
||||
</aside>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user