[ZEPPELIN-5830] Security page header styling (#4516)

When creating #4478 I ran into trouble running jekyll so I couldn't test the output.

I have since tested the output and made some updates accordingly.
2 files changed
tree: 7c829441838dfe979a9b952fe3ffa22692420199
  1. _includes/
  2. _layouts/
  3. _plugins/
  4. assets/
  5. contribution/
  6. releases/
  7. .gitignore
  8. .htaccess
  9. 404.html
  10. _config.yml
  11. assets.md
  12. atom.xml
  13. community.md
  14. doap.rdf
  15. documentation.md
  16. download.md
  17. Gemfile
  18. Gemfile.lock
  19. gh-pages.iml
  20. helium_packages.md
  21. index.md
  22. medium.md
  23. Rakefile
  24. README.md
  25. robot.txt
  26. rss.xml
  27. rsync.sh
  28. screenshots.md
  29. security.md
  30. sitemap.txt
  31. supported_interpreters.md
  32. technologies_deployments.md
  33. twitter.md
  34. whats_new.md
README.md

Zeppelin project website

This readme will walk you through building the Zeppelin website

Build website

See https://help.github.com/articles/using-jekyll-with-pages#installing-jekyll

tl;dr version:

ruby --version >= 1.9.3
gem install bundler
bundle install

Build FAQ

On OS X 10.9 you may need to do “xcode-select --install”

Gem nokogiri may confilict with xz if you have it installed. See https://github.com/sparklemotion/nokogiri/issues/1483 The workaround is to uninstall zx before doing bundle insall.

Run website

bundle exec jekyll serve --watch

Deploy to ASF svnpubsub infra (committers only)

  1. generate static website in ./_site

    JEKYLL_ENV=production bundle exec jekyll build
    
  2. checkout ASF repo

    svn co https://svn.apache.org/repos/asf/zeppelin asf-zeppelin
    
  3. copy zeppelin/_site/* to asf-zeppelin/site

  4. svn commit -m

Adding a new page

rake page name="new-page.md"