Jeremy Thomas 1dce18a658 Add underscore sass пре 8 година
..
_includes 0abecdd777 Fix hover/active states on desktop пре 8 година
_javascript 45a31d7b86 Add navbar documentation пре 8 година
_layouts 09ca2efe62 Fix hover/active states пре 8 година
_posts 09ca2efe62 Fix hover/active states пре 8 година
_sass 1dce18a658 Add underscore sass пре 8 година
css 0970a50595 Revert red пре 8 година
documentation 45a31d7b86 Add navbar documentation пре 8 година
favicons 486369ba7c Update favicons пре 8 година
images 9feff3d821 Fix #637 пре 8 година
lib 45a31d7b86 Add navbar documentation пре 8 година
vendor 5e644d861e Add babel пре 8 година
.babelrc 5e644d861e Add babel пре 8 година
.gitignore 1dce18a658 Add underscore sass пре 8 година
CNAME d9f06094ec Create CNAME пре 9 година
LICENSE 58eff365b7 Update templates пре 8 година
README.md 5c339b7b7c Fixes #560: Adds how-to README for docs (#561) пре 8 година
_config.yml 6fe8ce9795 Add navbar description пре 8 година
atom.xml 9094eff30a Move docs to bulma repo (#299) пре 9 година
blog.html 0abecdd777 Fix hover/active states on desktop пре 8 година
bulma-docs.sass 43b034e0af Add navbar component, Fix JS highlight пре 8 година
docker-compose.yml 83fbc6eb10 docker-compose file пре 8 година
index.html d5372f08af Add highlight пре 8 година
package.json 5e644d861e Add babel пре 8 година
templates.html 41db07d68d Fix button spacing, Add image placeholders пре 8 година
thank-you.html aed21e7fb3 Fix imports пре 8 година
tiles.html 41db07d68d Fix button spacing, Add image placeholders пре 8 година
yarn.lock 5e644d861e Add babel пре 8 година

README.md

Building the documentation

The documentation HTML is produced with the Ruby-based jekyll tool.

  1. Make sure Ruby 2.x is installed.
  2. gem install jekyll

Viewing the documentation locally

Then to view the documentation in your local checkout:

  1. Before you begin, cd into docs/ directory, and cp _config.yml _config.local.yml. Then edit _config.local.yml and change the url: value to http://localhost:4000. This local config file will be ignored by git.
  2. In a separate shell session, cd to the docs/ directory, and do:

    jekyll serve --incremental --config _config.local.yml
    

    This will start an HTTP server at http://localhost:4000/ that serves the docs built in the _site directory; and anytime the docs are rebuilt by you, it will serve the docs site on the fly.

  3. In your main shell session where you develop, if you change anything in docs/ the jekyll server will rebuild those on the fly. But if you change anything about the Bulma SASS or CSS, you need to do npm run start-docs to build the docs' CSS before you will see it in the browser. The process running jekyll serve will pick up the new CSS automatically.