A fork of hyde, the static site generation. Some patches will be pushed upstream.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

109 lines
2.5 KiB

  1. ====
  2. Hyde
  3. ====
  4. Overview
  5. ========
  6. Hyde is a static website generator written in Python. While Hyde took life as
  7. `Jekyll <https://jekyllrb.com/>`_'s evil twin, it has since been completely
  8. consumed by `the dark side <https://www.python.org/>`_ and has taken on an
  9. `identity of its own <https://groups.google.com/forum/#!forum/hyde-dev>`_.
  10. Hyde desires to fulfill the lofty goal of removing the pain points involved in
  11. creating and maintaining static websites.
  12. Spotlight
  13. =========
  14. - Support for powerful template languages like `Jinja2
  15. <http://jinja.pocoo.org>`_ complemented with custom tags and filters.
  16. - Rich :ref:`object model <object-model>` and overridable hierarchical
  17. :doc:`metadata </configuration>` available for use in templates.
  18. - Configurable sorting, tagging, and grouping support.
  19. - Extensible :doc:`plugins` architecture with text preprocessing and HTML
  20. postprocessing support for complex content transformations.
  21. - Instant preview using built-in :doc:`webserver <server>` that regenerates
  22. content if needed.
  23. Installation
  24. ============
  25. Hyde is available on `PyPI <https://pypi.python.org/pypi/hyde>`_.
  26. Installing hyde is as simple as running the following command::
  27. $ python -m pip install hyde
  28. Quickstart
  29. ==========
  30. After installing ``hyde``, creating and generating a website is extremely
  31. simple.
  32. To create a new Hyde website::
  33. $ hyde -s /path/to/your/site create
  34. To generate the HTML::
  35. $ cd /path/to/your/site
  36. $ hyde gen
  37. To serve the generated content, use Hyde's built-in web server::
  38. $ hyde serve
  39. The website is now accessible at `http://localhost:8080
  40. <http://localhost:8080>`_.
  41. The webserver regenerates the necessary files to serve your request. So, you
  42. can make your changes and simply refresh your browser to view them.
  43. For all the supported options, read the :doc:`cli` documentation or run::
  44. $ hyde --help
  45. Your First Hyde Website
  46. =======================
  47. Hyde uses the ``basic`` layout to generate your website by default. When you
  48. view your generated website, you will see the following dummy pages:
  49. #FIXME: images
  50. You can now continue to edit the content, layout and styles to customize it to
  51. your needs. Please see the :doc:`templates` documentation for more information.
  52. Source
  53. ======
  54. Hyde is `socially coded <https://github.com/hyde/hyde>`_. Feel free to fork.
  55. Contents:
  56. .. toctree::
  57. :maxdepth: 1
  58. installation
  59. cli
  60. configuration
  61. plugins
  62. server
  63. templates
  64. changelog
  65. Indices and tables
  66. ==================
  67. * :ref:`genindex`
  68. * :ref:`modindex`
  69. * :ref:`search`