first commit
This commit is contained in:
25
Swoft_BackEndApi/resource/views/layouts/default.php
Executable file
25
Swoft_BackEndApi/resource/views/layouts/default.php
Executable file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* @var \Swoft\View\Renderer $this
|
||||
*/
|
||||
?>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>Demo for layout</title>
|
||||
<link href="https://cdn.bootcss.com/twitter-bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<?php $this->include('layouts/default/header') ?>
|
||||
|
||||
<div class="container">
|
||||
<!-- Content here -->
|
||||
<div id="page-content" style="padding: 15px 0;">{_CONTENT_}</div>
|
||||
<?php $this->include('layouts/default/footer') ?>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user