Created
April 2, 2018 08:41
-
-
Save maicong/d5b5146e5612f60ed84e36073791e778 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* 实验室 | |
* | |
* @package custom | |
* @author MaiCong <[email protected]> | |
* @link https://github.com/maicong/stay | |
* @since 1.0.0 | |
*/ | |
if (!defined('__TYPECHO_ROOT_DIR__')) exit; | |
$this->need('header.php'); | |
?> | |
<main class="main" role="main"> | |
<div class="container"> | |
<article class="card post single page-<?php $this->slug();?>" itemscope itemtype="http://schema.org/BlogPosting"> | |
<div id="post-content" class="post__content" itemprop="articleBody"> | |
<ul class="lab"> | |
<li> | |
<a href="###"> | |
<h3>我是标题</h3> | |
<p>我是内容</p> | |
</a> | |
</li> | |
<li> | |
<a href="###"> | |
<h3>我是标题</h3> | |
<p>我是内容</p> | |
</a> | |
</li> | |
<li> | |
<a href="###"> | |
<h3>我是标题</h3> | |
<p>我是内容</p> | |
</a> | |
</li> | |
<li> | |
<a href="###"> | |
<h3>我是标题</h3> | |
<p>我是内容</p> | |
</a> | |
</li> | |
<li> | |
<a href="###"> | |
<h3>我是标题</h3> | |
<p>我是内容</p> | |
</a> | |
</li> | |
<li> | |
<a href="###"> | |
<h3>我是标题</h3> | |
<p>我是内容</p> | |
</a> | |
</li> | |
</ul> | |
</div> | |
</article> | |
</div> | |
</main> | |
<?php $this->need('footer.php'); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment