29 lines
816 B
Plaintext
29 lines
816 B
Plaintext
<%- partial('_partial/head') %>
|
|
<body class="home">
|
|
<!--[if lt IE 9]>
|
|
<div class="browsehappy">
|
|
当前网页 <strong>不支持</strong>
|
|
你正在使用的浏览器. 为了正常的访问, 请 <a href="http://browsehappy.com/">升级你的浏览器</a>.
|
|
</div>
|
|
<![endif]-->
|
|
|
|
<!-- 博客头部 -->
|
|
<%- partial('_partial/header') %>
|
|
<!-- 看板娘 -->
|
|
<div class="waifu">
|
|
<div class="waifu-tips"></div>
|
|
<canvas id="live2d" width="280" height="250" class="live2d"></canvas>
|
|
</div>
|
|
<!-- 博客正文 -->
|
|
<div class="container body clearfix">
|
|
<section class="content">
|
|
<div class="content-main widget">
|
|
<%- body %>
|
|
</div>
|
|
</section>
|
|
<%- partial('_partial/sidebar') %>
|
|
</div>
|
|
<!-- 博客底部 -->
|
|
<%- partial('_partial/footer') %>
|
|
</body>
|
|
</html> |