( php ) ✂
echo
_html( array('xmlns' => 'http://www.w3.org/1999/xhtml', 'xml:lang' => 'en'),
_head(
false,
_title(false, 'This is… John Blog') .
_link( array( 'href' => '/favicon.ico', 'rel' => 'shortcut icon'))
_meta( array( 'name' => 'keywords'))
)
_body(false, $the_bodyblablah)
)
1 echo
2 _html( array('xmlns' => 'http://www.w3.org/1999/xhtml', 'xml:lang' => 'en'),
3 _head(
4 false,
5 _title(false, 'This is… John Blog') .
6 _link( array( 'href' => '/favicon.ico', 'rel' => 'shortcut icon'))
7 _meta( array( 'name' => 'keywords'))
8 )
9 _body(false, $the_bodyblablah)
10 )