-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpage.php
More file actions
25 lines (22 loc) · 856 Bytes
/
page.php
File metadata and controls
25 lines (22 loc) · 856 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
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<div class="container">
<div class="row">
<!-- <div class="col-md-2 col-sm-1" > </div>-->
<div class="col-md-12 col-sm-12 col-xs-12 bd-padding-none">
<div class="bd-w-box bd-margin-bottom-20">
<div class="bd-w-header">
<h3 class="bd-w-title"> <a href="<?php $this->permalink() ?>" target="_blank"> <?php $this->title() ?></a> </h3>
</div>
<div class="bd-w-content clearfix">
<div class="bd-article">
<?php $this->content(); ?>
</div>
</div>
</div>
<?php $this->need('comments.php'); ?>
</div>
<!-- <div class="col-md-2 col-sm-1"> </div>-->
</div>
</div>
<?php $this->need('footer.php'); ?>