Sha256: 458c4347f9cb4beabb3b9f3a4536b664b1d2912a5c88b9c00f73854d9b10cc53
Contents?: true
Size: 949 Bytes
Versions: 3
Compression:
Stored size: 949 Bytes
Contents
<%= sidebar_section_for(t(".archive")) do %> <div class="archive"> <ul> <% DateTime.now.year.downto(@first_post_year) do |year| %> <li> <span class="js-year blog-year" ><%= year %></span> <ul class="js-months" style="display:none"> <% 12.downto(1) do |month| year_month = "#{year} #{month}" %> <% if @archive_posts[year_month]%> <li> <span class="js-month blog-month" ><%= Date::MONTHNAMES[month] %></span> <ul class="js-posts" style="display:none"> <% @archive_posts[year_month].sort.reverse.each do |post| %> <li><%= link_to post.title, post.full_url %></li> <% end %> </ul> </li> <% end %> <% end %> </ul> </li> <% end %> </ul> </div> <% end %>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
monologue-0.5.0 | app/views/monologue/sidebar/_archive.html.erb |
monologue-0.4.1 | app/views/monologue/sidebar/_archive.html.erb |
monologue-0.4.0 | app/views/monologue/sidebar/_archive.html.erb |