mirror of
https://github.com/tangkunyin/hexo-theme-jsimple.git
synced 2026-01-25 14:56:28 +00:00
66 lines
2.6 KiB
Plaintext
66 lines
2.6 KiB
Plaintext
<!DOCTYPE HTML>
|
|
<html class="no-js" lang="zh-CN">
|
|
<!--
|
|
// _ooOoo_
|
|
// o8888888o
|
|
// 88" . "88
|
|
// (| -_- |)
|
|
// O\ = /O
|
|
// ____/`---'\____
|
|
// . ' \\| |// `.
|
|
// / \\||| : |||// \
|
|
// / _||||| -:- |||||- \
|
|
// | | \\\ - /// | |
|
|
// | \_| ''\---/'' | |
|
|
// \ .-\__ `-` ___/-. /
|
|
// ___`. .' /--.--\ `. . __
|
|
// ."" '< `.___\_<|>_/___.' >'"".
|
|
// | | : `- \`.;`\ _ /`;.`/ - ` : | |
|
|
// \ \ `-. \_ __\ /__ _/ .-` / /
|
|
// ======`-.____`-.___\_____/___.-`____.-'======
|
|
// `=---='
|
|
// 拦截插件累计拦截逗比攻击"1381438"次!
|
|
// .............................................
|
|
// 佛祖保佑 永无BUG
|
|
// 佛曰:
|
|
// 写字楼里写字间,写字间里程序员;
|
|
// 程序人员写程序,又拿程序换酒钱。
|
|
// 酒醒只在网上坐,酒醉还来网下眠;
|
|
// 酒醉酒醒日复日,网上网下年复年。
|
|
// 但愿老死电脑间,不愿鞠躬老板前;
|
|
// 奔驰宝马贵者趣,公交自行程序员。
|
|
// 别人笑我忒疯癫,我笑自己命太贱;
|
|
// 不见满街漂亮妹,哪个归得程序员?
|
|
-->
|
|
<head>
|
|
<%- partial('_partial/head') %>
|
|
</head>
|
|
<body>
|
|
<%- partial('_partial/leftMenu', null, {cache: !config.relative_link}) %>
|
|
<%- partial('_widget/user-entry', null, {cache: !config.relative_link}) %>
|
|
<div id="wrapper" class="clearfix">
|
|
<div id="body">
|
|
<div class="main" id="main">
|
|
<%- partial('_partial/middleCover', {cache: !config.relative_link}) %>
|
|
<%- body %>
|
|
</div><!-- end #main-->
|
|
</div><!-- end #body -->
|
|
<%- partial('_partial/footer', null, {cache: !config.relative_link}) %>
|
|
</div>
|
|
<div class="fixed-btn">
|
|
<a class="btn-gotop" href="javascript:"> <i class="fa fa-angle-up"></i></a>
|
|
</div>
|
|
<script>
|
|
$(function () {
|
|
SimpleCore.init({
|
|
url: '<%= config.url %>',
|
|
buildingTime: '<%= theme.siteBuildingTime %>',
|
|
usePjax: true,
|
|
current: $('.post-tags').length > 0 ? 'post' : 'archive',
|
|
prefix: '_<%= config.url %>',
|
|
donateImg: '/images/weixin_donate.png'
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |