-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpage.php
28 lines (28 loc) · 1.06 KB
/
page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('layout/header.php'); ?>
<div class="container">
<div class="row">
<div class="col col-lg-2 col-md-2 col-sm-2 col-xs-2 d-none d-lg-block left">
<?php $this->need('layout/left.php'); ?>
</div>
<div class="col-lg-10 col-md-12 col-xs-10">
<div class="container">
<div class="row">
<div class="main">
<?php $this->need('component/index.toolbar.php'); ?>
<?php $this->need('component/page.content.php') ?>
</div>
<div class="col-lg-3 col-md-3 col-sm-3 col-xs-3 right d-none d-lg-block">
<?php $this->need('layout/right.php'); ?>
</div>
</div>
</div>
</div>
<div class="col-12 d-lg-none" style="text-align:center">
<?php $this->need('layout/footer.php'); ?>
</div>
</div>
</div>
<?php $this->need('component/js.php'); ?>
</body>
</html>