-# constructOrSkip( 'Document', site, 'index_html'
-# , title = translate('Home')
-# , text_format='html'
-# , text=site.default_home_page_content())
-# doActionForOrSkip(site.index_html, 'direct_publish')
+text=[]
+text.append('<h1>%s</h1>' % translate('Welcome to Plinn!'))
+text.append('<p>%s</p>' % translate('This is the default home page.'))
+text.append('<p>%s</p>' % translate('To change the content just select "Edit" in the Tab bar on the top.'))
+text = '\n'.join(text)
+constructOrSkip( 'Document', site, 'index_html'
+ , title = translate('Home')
+ , text_format='html'
+ , text=text)
+doActionForOrSkip(site.index_html, 'direct_publish')