Templates

Templates live in the templates/ directory. They're Tera templates. The organization of the templates is arbitrary. Any number of Pages can link to a template. A Page can associate with a single Template.

Access data in templates

These are template variables available:

A trivial template could look like this:

<!DOCTYPE html>
<html>
  <head></head>
  <body>
  {{ content | safe}}
  </body>
</html>