Jeremy Thomas 0e6e22e70a Add navbar fixed classes 7 năm trước cách đây
..
_data 3650493764 Update twitter profile photo. (#1387) 7 năm trước cách đây
_includes 0e6e22e70a Add navbar fixed classes 7 năm trước cách đây
_javascript 1210e65f83 Add intro video 7 năm trước cách đây
_layouts 0e6e22e70a Add navbar fixed classes 7 năm trước cách đây
_posts 80bd5415be Use https for Bulma 7 năm trước cách đây
_sass 0e6e22e70a Add navbar fixed classes 7 năm trước cách đây
css 0e6e22e70a Add navbar fixed classes 7 năm trước cách đây
documentation 202c5996a4 Fix customize code 7 năm trước cách đây
favicons 486369ba7c Update favicons 8 năm trước cách đây
images c4809633f0 Add bulma start 7 năm trước cách đây
lib 1210e65f83 Add intro video 7 năm trước cách đây
vendor 9db2be70d9 Update expo 7 năm trước cách đây
.babelrc 5e644d861e Add babel 8 năm trước cách đây
.gitignore 7a6fcf38a6 Remove docs css map 7 năm trước cách đây
CNAME d9f06094ec Create CNAME 9 năm trước cách đây
LICENSE 58eff365b7 Update templates 8 năm trước cách đây
README.md 5c339b7b7c Fixes #560: Adds how-to README for docs (#561) 8 năm trước cách đây
_config.yml 80bd5415be Use https for Bulma 7 năm trước cách đây
alternative-to-bootstrap.html cd2f886df2 Add bd classes 8 năm trước cách đây
atom.xml 9094eff30a Move docs to bulma repo (#299) 9 năm trước cách đây
blog.html cd2f886df2 Add bd classes 8 năm trước cách đây
bulma-docs.sass 9b06974cd1 Create snippet component 8 năm trước cách đây
bulma-start.html ab77b207ba Fix the last link under npm dependencies (#1400) 7 năm trước cách đây
docker-compose.yml 83fbc6eb10 docker-compose file 8 năm trước cách đây
expo.html 9db2be70d9 Update expo 7 năm trước cách đây
extensions.html 35598b9dc1 Use link instead of primary 7 năm trước cách đây
index.html 0e6e22e70a Add navbar fixed classes 7 năm trước cách đây
love.html 605984f36c Use https twitter images 7 năm trước cách đây
made-with-bulma.html 1523ce8527 Docs/variables data (#1314) 7 năm trước cách đây
package.json 5e644d861e Add babel 8 năm trước cách đây
templates.html 41db07d68d Fix button spacing, Add image placeholders 8 năm trước cách đây
thank-you.html 93b7fb2fd4 Add heading 8 năm trước cách đây
tiles.html 9b06974cd1 Create snippet component 8 năm trước cách đây
yarn.lock 5e644d861e Add babel 8 năm trước cách đây

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.