(self, title, *args, **kwargs)
| 1329 | |
| 1330 | class HEAD(Tag): |
| 1331 | def __init__(self, title, *args, **kwargs): |
| 1332 | super(HEAD, self).__init__(*args, _type='head', **kwargs) |
| 1333 | self.add_child('meta', |
| 1334 | """<meta content='text/html;charset=utf-8' http-equiv='Content-Type'> |
| 1335 | <meta content='utf-8' http-equiv='encoding'> |
| 1336 | <meta name="viewport" content="width=device-width, initial-scale=1.0">""") |
| 1337 | |
| 1338 | self.set_title(title) |
| 1339 | |
| 1340 | def set_icon_file(self, filename, rel="icon"): |
| 1341 | """ Allows to define an icon for the App |