6

I have done these:

add an "about" page for example:

1.Create the “about” page:
rake new_page["about"]

2:Add the link:
<li><a href="/about">About</a></li>

then generated....

and the "about" tag do appear; but it couldn't be clicked; the new page do not come out

why...

novelance
  • 61
  • 4

1 Answers1

6

Your link needs to use the root url of your site:

<li><a href="{{ root_url }}/about">About</a></li>

And make sure you've added your link in: source/_includes/custom/navigation.html

More info: Octopress Theming & Customization

stubaker
  • 1,928
  • 1
  • 23
  • 25