forked from mulingyuer/Typecho_Theme_JJ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.php
39 lines (38 loc) · 964 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
33
34
35
36
37
38
39
<?php
/**
* links
*
* @package custom
*/
if ( ! defined('__TYPECHO_ROOT_DIR__')) {
exit;
}
?>
<!DOCTYPE html>
<html lang="zh-CN">
<?php $this->need('./php_modules/notes.php');?>
<head>
<?php $this->need('./php_modules/default_head.php');?>
<?php $this->need('./dist/head/links.php');?>
<?php //head标签底部插入代码 ?>
<?php $this->options->headInsertCode();?>
<script>
</script>
</head>
<body>
<?php $this->need('./php_modules/header.php');?>
<main class="main no-nav" role="main">
<div class="container">
<div class="main-content links-content">
<div class="main-left">
<?php $this->need('./php_modules/links/content.php');?>
<?php $this->need('./php_modules/comment/comment.php');?>
</div>
</div>
</div>
</main>
<?php $this->need('./php_modules/fixed_tool.php');?>
<?php //body标签底部插入代码 ?>
<?php $this->options->bodyInsertCode();?>
</body>
</html>