Tagged Questions

nanoc is a Ruby web publishing system for building small to medium-sized websites.

learn more… | top users | synonyms

5
votes
1answer
501 views

Merge items in nanoc

I have been trying to use nanoc for generating a static website. I need to organize a complex arrangement pages I want to keep my content DRY. How does the concept of includes or merges work within ...
3
votes
4answers
128 views

What would be a python alternative to a system like nanoc?

Is there a python publishing system (have no idea whether this is an appropriate name for such a thing, but they're calling it that way) similar to nanoc? Generally, a thing which will convert a lot ...
2
votes
1answer
99 views

nanoc and multiple layouts

is it possible to use multiple layouts for a specific (or all) item(s)? For example, I have a couple of items, and I want to apply two different layouts to it. One with a green and one with a blue ...
2
votes
2answers
398 views

Ruby / nanoc: How do I get a list of items to display in a page?

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 ...
1
vote
1answer
57 views

How do I create 'draft' items in nanoc?

I'd like to render posts to different folders depending on a status code in the metadata. For example, if I have an attribute of status: draft I'd like for these items to be rendered to a folder ...
1
vote
1answer
63 views

How do I pass an extension to the Redcarpet Nanoc filter

I'm trying to filter content in Nanoc 3 using their :redcarpet filter. My code looks like the following (from the Rules file): compile '/posts/*/' do filter :redcarpet layout 'default' end ...
1
vote
1answer
44 views

Creating Items for an specific section

I'm building a website with nanoc. I have my main index file and now I want to add a article section with some articles I've written. So I use: nanoc create_item articles to create this new ...
1
vote
1answer
75 views

How should I implement 302 redirect for website transition?

I have an old website that hasn't gotten much love over the years and that's about to change. The existing site is based on a 3.* version of an ASP.NET portal framework called DotNetNuke (DNN). I'm ...
1
vote
1answer
48 views

Where does nanoc create my site on windows?

http://nanoc.stoneship.org/docs/3-getting-started/ I type nanoc create_site tutorial using cmd command line within a folder. It says it created the site but I can't find it in current directory where ...
1
vote
1answer
391 views

nanoc site tested with unicorn

I have a nanoc site (so, all static pages) that I'd like to test with unicorn. The idea behind this is to host this site on heroku then. The structure is then a rack application. I have added a ...
0
votes
1answer
17 views

nanoc or ruby link_to questions

I have an href tag <li><a href="/"><span></span>Home</a></li> Which i need to convert to <li> <%= link_to('Home', '/Home/') %></li> But when I ...
0
votes
2answers
34 views

Creating a basic site with nanoc

I am new to nanoc and wondering if there any tutorials or guides which show how to create a basic site with nano? A video tutorial would be great.. thanks
0
votes
2answers
83 views

What to do?`nanoc compile` runs correctly. `bundle exec nanoc compile` does not

Wen I run nanoc compile on my nanoc site everything builds. When I run bundle exec nanoc compile I get this error message: RuntimeError: Error processing : /markup/post/ undefined method `gsub!' ...
0
votes
0answers
39 views

How to stop nanoc from skipping content pages

So I've set up a nanoc site and everything is going well, the only problem is that there is some data in a lib that changes on nearly every compile. When I type nanoc compile Nanoc skips ...
0
votes
1answer
157 views

Nanoc layout compile Rules

I'm working with nanoc and I want my index.html to point to specific layout so I created that layout and it is called nosidebar.html My Rules looks like: compile 'index.html' do layout ...
0
votes
1answer
186 views

How to redefine layout for custom page

I use nice a site-generator on ruby nanoc (http://nanoc.stoneship.org/). I need to redefine the layout for rendering some pages. Maybe it can be determined directly in yaml config? For example, I ...
0
votes
1answer
121 views

global variable in nanoc

I'm building a site with nanoc and cannot find out how to use a global variable that could be incremented on the compilation of each page. The idea behind this is to get the list of all tags ...