Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: getnikola/nikola
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d6183953d843
Choose a base ref
...
head repository: getnikola/nikola
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 925e6a0d5833
Choose a head ref
  • 2 commits
  • 45 files changed
  • 1 contributor

Commits on Jun 1, 2017

  1. Lint

    Roberto Alsina committed Jun 1, 2017

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    06299db View commit details
  2. Lint

    Roberto Alsina committed Jun 1, 2017
    Copy the full SHA
    925e6a0 View commit details
Showing with 12,537 additions and 1 deletion.
  1. +3 −0 .vscode/settings.json
  2. +17 −0 bar/README.txt
  3. +1,314 −0 bar/conf.py
  4. BIN bar/files/favicon.ico
  5. BIN bar/files/images/nikola.png
  6. +1 −0 bar/galleries/demo/exclude.meta
  7. +4 −0 bar/galleries/demo/index.txt
  8. BIN bar/galleries/demo/tesla2_lg.jpg
  9. BIN bar/galleries/demo/tesla4_lg.jpg
  10. BIN bar/galleries/demo/tesla_conducts_lg.jpg
  11. BIN bar/galleries/demo/tesla_lightning1_lg.jpg
  12. BIN bar/galleries/demo/tesla_lightning2_lg.jpg
  13. BIN bar/galleries/demo/tesla_tower1_lg.jpg
  14. BIN bar/images/frontispiece.jpg
  15. BIN bar/images/illus_001.jpg
  16. +12 −0 bar/listings/hello.py
  17. +11 −0 bar/pages/1.rst
  18. +1,047 −0 bar/pages/bootstrap-demo.rst
  19. +59 −0 bar/pages/charts.txt
  20. +828 −0 bar/pages/creating-a-theme.rst
  21. +468 −0 bar/pages/dr-nikolas-vendetta.rst
  22. +699 −0 bar/pages/extending.txt
  23. +145 −0 bar/pages/internals.txt
  24. +10 −0 bar/pages/listings-demo.rst
  25. +2,827 −0 bar/pages/manual.rst
  26. +250 −0 bar/pages/path_handlers.txt
  27. +1,348 −0 bar/pages/quickref.rst
  28. +413 −0 bar/pages/quickstart.rst
  29. +17 −0 bar/pages/slides-demo.rst
  30. +202 −0 bar/pages/social_buttons.txt
  31. +459 −0 bar/pages/theming.rst
  32. +27 −0 bar/posts/1.rst
  33. +117 −0 bar/templates/book.tmpl
  34. +1,309 −0 foo/conf.py
  35. +12 −0 foo/posts/foobar.rst
  36. +10 −0 foo/posts/ggg.rst
  37. +1 −1 nikola/plugins/compile/rest/__init__.py
  38. BIN nikola_7.8.5_amd64.snap
  39. BIN nikola_7.8.5_source.tar.bz2
  40. +1 −0 node_modules/.bin/bower
  41. +670 −0 node_modules/bower/CHANGELOG.md
  42. +19 −0 node_modules/bower/LICENSE
  43. +124 −0 node_modules/bower/README.md
  44. +3 −0 node_modules/bower/bin/bower
  45. +110 −0 node_modules/bower/package.json
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Place your settings in this file to overwrite default and user settings.
{
}
17 changes: 17 additions & 0 deletions bar/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
This folder contains the source used to generate a static site using Nikola.

Installation and documentation at https://getnikola.com/

Configuration file for the site is ``conf.py``.

To build the site::

nikola build

To see it::

nikola serve -b

To check all available commands::

nikola help
Loading