gma / nesta

File Based CMS and Static Site Generator
http://nestacms.com
MIT License
902 stars 121 forks source link

allow for a way to override the root link name #148

Closed komidore64 closed 10 years ago

komidore64 commented 10 years ago

this hook allows for a website to override the root link name if so desired.

one could override it using the code below:

# app.rb

module Nesta
  module Navigation
    module Renderers
      def root_link_name
        'My Website'
      end
    end
  end
end
gma commented 10 years ago

Hi. Did you try setting the "Link text" metadata on your home page? That allows you to control it more easily, without resorting to code.

Cheers.

komidore64 commented 10 years ago

i didn't!

in content/pages/index.haml?

gma commented 10 years ago

Yes.

On 18 Jul 2014, at 16:25, Adam Price notifications@github.com wrote:

in content/pages/index.haml?

— Reply to this email directly or view it on GitHub.

komidore64 commented 10 years ago

thank you! that did the trick