I fully admit I am a Ruby newb, and this question could come simply out of my ignorance for Ruby.

That being said, I'm getting started with the nanoc project (and loving it). I'd like to power my blog using this ... but: For the life of me, I can't figure out how to get a list of articles / posts to display on the main page. How do I do this?

I'd like to use erb/html if possible.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Here is some erb that creates a list of 10 most recent articles with the title, date and links. You can also add the article content using article.compiled_content. I use hpricot to display only the fist paragraph of each post in my blog

<% @site.sorted_articles[0, 10].each do |article| %>
<p><strong> 
<%= link_to(article[:title], article.path) %> </strong><br/>
<%= article[:created_at] %> <br/>
<%= tags_for(article) %> <br/></p>
<% end %>
link|improve this answer
feedback

In Nanoc3::Helpers::Blogging there are methods called articles and sorted_articles (see http://nanoc.stoneship.org/docs/api/3.1/Nanoc3/Helpers/Blogging.html).

You can "enable" that helper using

include Nanoc3::Helpers::Blogging

in a file in lib/ like lib/helpers.rb.

See http://nanoc.stoneship.org/docs/4-basic-concepts/#helpers

link|improve this answer
Mind including a code sample using that? – Dan Esparza Feb 7 '11 at 14:01
If there's no file like that in your lib/ directory. Just created one and paste the line above in that file. Nanoc will require every file in lib/ so you may add it to one of the others as well or create another file with an arbitrary name. – Koraktor Feb 7 '11 at 14:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.