18 lines
533 B
PHTML
18 lines
533 B
PHTML
<?php echo $this->doctype() ?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href='https://fonts.googleapis.com/css?family=Roboto:400,100,300,700' rel='stylesheet' type='text/css'>
|
|
|
|
<?php echo $this->headTitle() ?>
|
|
<?php echo $this->headLink() ?>
|
|
<?php echo $this->headScript() ?>
|
|
</head>
|
|
<body>
|
|
|
|
<?php echo $this->layout()->content ?>
|
|
|
|
</body>
|
|
</html>
|