comparison pics2/pics_app.py @ 107:24a967efbf3e

add dmd
author paulo
date Fri, 03 Apr 2020 23:58:24 -0700
parents d521df55f56c
children
comparison
equal deleted inserted replaced
8:a08d40194557 9:ac7720cc3eec
86 86
87 87
88 def _get_standard_html_doc(self, title): 88 def _get_standard_html_doc(self, title):
89 root = html.HTML("html") 89 root = html.HTML("html")
90 90
91 header = root.header 91 header = root.head
92 header.link(rel="stylesheet", type="text/css", href=self._get_pics_url("index.css")) 92 header.link(rel="stylesheet", type="text/css", href=self._get_pics_url("index.css"))
93 header.title(title) 93 header.title(title)
94 94
95 body = root.body 95 body = root.body
96 body.h1(title) 96 body.h1(title)