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.
 
 
 

27 lines
843 B

  1. # -*- coding: utf-8 -*-
  2. # pylint: disable-msg=W0104,E0602,W0613,R0201
  3. """
  4. Abstract classes and utilities for template engines
  5. """
  6. class Template(object):
  7. """
  8. Interface for hyde template engines. To use a different template engine,
  9. the following interface must be implemented.
  10. """
  11. def __init__(self, sitepath):
  12. self.sitepath = sitepath
  13. def configure(self, config):
  14. """
  15. The config object is a simple YAML object with required settings. The template
  16. implementations are responsible for transforming this object to match the `settings`
  17. required for the template engines.
  18. """
  19. abstract
  20. def render(self, resource, context):
  21. """
  22. Given the resource, and the context, this function
  23. must return the rendered string.
  24. """
  25. abstract