-
Notifications
You must be signed in to change notification settings - Fork 41
/
links.php
32 lines (32 loc) · 992 Bytes
/
links.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
29
30
31
32
<?php
/**
* 友情链接
*
* @package custom
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$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>
</div>
<?php $this->need('component/js.php'); ?>
</body>
</html>