Beispiel #1
0
 def init(self):
     self(head=tags.Head()(
         charset=tags.Meta(),
         description=tags.Meta(name='description'),
         keywords=tags.Meta(name='keywords'),
         title=tags.Title(),
     ),
          body=tags.Body())
Beispiel #2
0
 def init(self):
     self(
         head=tags.Head()(
             title=tags.Title(),
             charset=tags.Meta(),
             description=tags.Meta(name="description"),
             keywords=tags.Meta(name="keywords"),
         ),
         body=tags.Body(),
     )