Sha256: da0d2a5c4bf3dd151cf9c6c2d2d24ce6ead008c51ee9b921b8b020e7eebb0950

Contents?: true

Size: 464 Bytes

Versions: 7

Compression:

Stored size: 464 Bytes

Contents

<!doctype html>
<html>
  <head>
  </head>
  <body>

<!-- ARTICLES -->
<% collected.articles.each do |article| %>
  <li>
    <a href="<%= article.url %>">Article: <%= article.data.title %></a>
    <time><%= article.data.date.strftime('%b %e') %></time>
  </li>
<% end %>

<!-- TAGS -->
<% collected[:tags].each do |k, items| %>
  <li>
    <%= k %>
    <% items.each do |article| %>
      <%= article.data.title %>
    <% end %>
  </li>
<% end %>

  </body>
</html>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
middleman-core-4.0.0.rc.1 fixtures/collections-app/source/index.html.erb
middleman-core-4.0.0.beta.2 fixtures/collections-app/source/index.html.erb
middleman-core-4.0.0.beta.1 fixtures/collections-app/source/index.html.erb
middleman-core-4.0.0.alpha.6 fixtures/collections-app/source/index.html.erb
middleman-core-4.0.0.alpha.5 fixtures/collections-app/source/index.html.erb
middleman-core-4.0.0.alpha.4 fixtures/collections-app/source/index.html.erb
middleman-core-4.0.0.alpha.3 fixtures/collections-app/source/index.html.erb