Skip to content

Instantly share code, notes, and snippets.

@maicong
Created April 2, 2018 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maicong/d5b5146e5612f60ed84e36073791e778 to your computer and use it in GitHub Desktop.
Save maicong/d5b5146e5612f60ed84e36073791e778 to your computer and use it in GitHub Desktop.
<?php
/**
*
* 实验室
*
* @package custom
* @author MaiCong <i@maicong.me>
* @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