summaryrefslogtreecommitdiff
path: root/source/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'source/index.html.erb')
-rw-r--r--source/index.html.erb24
1 files changed, 24 insertions, 0 deletions
diff --git a/source/index.html.erb b/source/index.html.erb
new file mode 100644
index 0000000..0fae27e
--- /dev/null
+++ b/source/index.html.erb
@@ -0,0 +1,24 @@
+---
+pageable: true
+per_page: 10
+---
+<% if paginate && num_pages > 1 %>
+ <p>Page <%= page_number %> of <%= num_pages %></p>
+
+ <% if prev_page %>
+ <p><%= link_to 'Previous page', prev_page %></p>
+ <% end %>
+<% end %>
+
+<% page_articles.each_with_index do |article, i| %>
+ <h2><%= link_to article.title, article %> <span><%= article.date.strftime('%b %e') %></span></h2>
+ <!-- use article.summary(250) if you have Nokogiri available to show just
+ the first 250 characters -->
+ <%= article.body %>
+<% end %>
+
+<% if paginate %>
+ <% if next_page %>
+ <p><%= link_to 'Next page', next_page %></p>
+ <% end %>
+<% end %>