-
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathlinks.php
More file actions
27 lines (26 loc) · 655 Bytes
/
links.php
File metadata and controls
27 lines (26 loc) · 655 Bytes
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
<?php
/**
* Links
*
* @package custom
* @author Bhao
* @link https://dwd.moe/
* @date 2023-12-04
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('includes/header.php'); ?>
<div class="index-container">
<div class="mdui-col-md-8 page-content">
<?php Links() ?>
<div class="mdui-col-sm-12">
<?php if ($this->content) { ?>
<div class="mdui-card post-content mdui-typo">
<?php parseContent($this->content); ?>
</div>
<?php }
$this->need('includes/comments.php'); ?>
</div>
</div>
<?php $this -> need('includes/sidebar.php'); ?>
</div>
<?php $this -> need('includes/footer.php'); ?>