(self, view, path)
| 501 | b.writeHtml(filePath) |
| 502 | |
| 503 | def write_html(self, view, path): |
| 504 | context = view.context |
| 505 | b = context.b |
| 506 | b.docType('html') |
| 507 | b.html()#lang="%s" itemtype="http://schema.org/">\n' % self.css('language')) |
| 508 | |
| 509 | self.write_head(view) |
| 510 | self.write_body(view, path) |
| 511 | |
| 512 | def write_head(self, view): |
| 513 | """Builds the page head. There are 3 option (all including the |
no test coverage detected