예제 #1
0
파일: widgets.py 프로젝트: vijetha35/TemPy
 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())
예제 #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(),
     )