claudioc / jingo

Node.js based Wiki
MIT License
1.02k stars 183 forks source link

Where I have to put my customization files exactly? #137

Closed Lichtjaeger closed 8 years ago

Lichtjaeger commented 8 years ago

Hi, I have a project folder:

project/ |-.git/ | |-... |-node_modules | |-... |-wiki/ | |-Home.md |-.gitignore |-_style.css |-config.yaml |-package.json

I use npm to start jingo with npm start ("jingo -c ./config.yaml").

My configuration:

application:
  repository: '.'
  docSubdir: 'wiki'
customizations:
  sidebar: _sidebar.md
  footer: _footer.md
  style: _style.css
  script: _script.js

But my _style.css isn't loading. What I have to configure or where I have to put it. I have tried the wiki directory, but it didn't work.

claudioc commented 8 years ago

According to the README, the customizations files are read from the document directory.

Please note that the repository must be the absolute path of where the documents reside. This is the reason why it's not working for you (take a look at the README).