Karrigell/Build a simple HTML page
There are 3 ways you can build HTML in a script
-
Raw HTML
editThe first one is to return a string with HTML tags, like this :
def index(): return "<html><body>Hello world</body><html>"
-
Templates
editFor a document that holds mainly static HTML, with only a few dynamic values, you can use templates. For instance, create a file called page.tmpl with:
<html> <body> Hello world </body> </html>
and save it in the same folder as index.py. Then modify index.py like this:
def index(): return Template("page.tmpl")
The built-in function Template is available in all the scripts managed by Karrigell. It reads the content from the file located at the relative url page.tmpl and returns it. More on the templating system later.
-
The HTMLTags module
editThe third way, recommended when the page is mostly made of dynamic content, is to use the HTMLTags module, included in the package :
def index(): return HTML(BODY("Hello world"))
The HTMLTags module defines classes for all valid HTML tags, in uppercase letters : the classes for tags <html> and <body> are
HTML
andBODY
(surprise !). These classes are available in the scripts managed by KarrigellThe function index() returns an instance of the class
HTML
, called with an instance of the classBODY
; the server returns its string representation, which is the HTML code<html><body>Hello world</body><html>