Jeremy Thomas 426249f36c Add x-fifth documentation il y a 7 ans
..
_data 1523ce8527 Docs/variables data (#1314) il y a 7 ans
_includes c4809633f0 Add bulma start il y a 7 ans
_javascript 1210e65f83 Add intro video il y a 7 ans
_layouts aea5dd62c7 Add Bulma badges il y a 7 ans
_posts 80bd5415be Use https for Bulma il y a 7 ans
_sass 53be32fb7f Fixed #1308, rainbow button glitch (#1309) il y a 7 ans
css 426249f36c Add x-fifth documentation il y a 7 ans
documentation 426249f36c Add x-fifth documentation il y a 7 ans
favicons 486369ba7c Update favicons il y a 8 ans
images c4809633f0 Add bulma start il y a 7 ans
lib 1210e65f83 Add intro video il y a 7 ans
vendor 9db2be70d9 Update expo il y a 7 ans
.babelrc 5e644d861e Add babel il y a 8 ans
.gitignore 7a6fcf38a6 Remove docs css map il y a 7 ans
CNAME d9f06094ec Create CNAME il y a 9 ans
LICENSE 58eff365b7 Update templates il y a 8 ans
README.md 5c339b7b7c Fixes #560: Adds how-to README for docs (#561) il y a 8 ans
_config.yml 80bd5415be Use https for Bulma il y a 7 ans
alternative-to-bootstrap.html cd2f886df2 Add bd classes il y a 8 ans
atom.xml 9094eff30a Move docs to bulma repo (#299) il y a 9 ans
blog.html cd2f886df2 Add bd classes il y a 8 ans
bulma-docs.sass 9b06974cd1 Create snippet component il y a 8 ans
bulma-start.html 9ac5ba580d Fix code links il y a 7 ans
docker-compose.yml 83fbc6eb10 docker-compose file il y a 8 ans
expo.html 9db2be70d9 Update expo il y a 7 ans
extensions.html 35598b9dc1 Use link instead of primary il y a 7 ans
index.html 336c88d9c9 Add index JS il y a 7 ans
love.html 605984f36c Use https twitter images il y a 7 ans
made-with-bulma.html 1523ce8527 Docs/variables data (#1314) il y a 7 ans
package.json 5e644d861e Add babel il y a 8 ans
templates.html 41db07d68d Fix button spacing, Add image placeholders il y a 8 ans
thank-you.html 93b7fb2fd4 Add heading il y a 8 ans
tiles.html 9b06974cd1 Create snippet component il y a 8 ans
yarn.lock 5e644d861e Add babel il y a 8 ans

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.