24 lines
630 B
PHTML
24 lines
630 B
PHTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
|
<title><?= $this->e($title) ?> - Camera Slide</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<style>
|
|
html, body {
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
<?= $this->section('stylesheets') ?>
|
|
</head>
|
|
<body class="app">
|
|
<?= $this->section('content') ?>
|
|
<script src="<?=$this->serverurl("lib/jquery-3.2.1.min.js") ?>"></script>
|
|
<?= $this->section('javascript') ?>
|
|
</body>
|
|
</html>
|