* initial commit
This commit is contained in:
23
templates/layout/default.phtml
Normal file
23
templates/layout/default.phtml
Normal file
@@ -0,0 +1,23 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user