-
Notifications
You must be signed in to change notification settings - Fork 33
/
page-link.php
29 lines (24 loc) · 848 Bytes
/
page-link.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
<?php
/**
* Template Page of Link
*
* @package custom
*/
?>
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('component/header.php'); ?>
<div id="main" class="main" role="main">
<div class="main-inner clearfix">
<?php if (isPc()) $this->need('component/sidebar.php'); ?>
<div class="content-wrap">
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
<h1 class="post-title" itemprop="name headline"><a class="post-title-link" itemprop="url" href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h1>
<div id="link" class="post-content" itemprop="articleBody">
<?php $this->content(); ?>
</div>
</article>
<?php $this->need('component/comments.php'); ?>
</div>
</div>
</div>
<?php $this->need('component/footer.php'); ?>