-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
173 lines (150 loc) · 18 KB
/
index.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html><html lang="zh-cn" data-theme="light"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>LoveNote 莹莹和他的跟班</title><meta name="author" content="小跟班"><meta name="copyright" content="小跟班"><meta name="format-detection" content="telephone=no"><meta name="theme-color" content="#ffffff"><meta http-equiv="Cache-Control" content="no-transform"><meta http-equiv="Cache-Control" content="no-siteapp"><meta property="og:type" content="website">
<meta property="og:title" content="LoveNote 莹莹和他的跟班">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="LoveNote 莹莹和他的跟班">
<meta property="og:locale" content="zh_CN">
<meta property="og:image" content="http://yoursite.com/null">
<meta property="article:author" content="小跟班">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="http://yoursite.com/null"><link rel="shortcut icon" href="/myblog1.github.io/img/favicon.png"><link rel="canonical" href="http://yoursite.com/"><link rel="preconnect" href="//cdn.jsdelivr.net"/><link rel="preconnect" href="//busuanzi.ibruce.info"/><link rel="stylesheet" href="/myblog1.github.io/css/index.css"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free/css/all.min.css"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fancyapps/fancybox@latest/dist/jquery.fancybox.min.css"><script>var GLOBAL_CONFIG = {
root: '/myblog1.github.io/',
algolia: undefined,
localSearch: undefined,
translate: undefined,
noticeOutdate: undefined,
highlight: {"plugin":"highlighjs","highlightCopy":true,"highlightLang":true},
copy: {
success: 'Copy successfully',
error: 'Copy error',
noSupport: 'The browser does not support'
},
relativeDate: {
homepage: false,
post: false
},
runtime: '',
date_suffix: {
just: 'Just',
min: 'minutes ago',
hour: 'hours ago',
day: 'days ago',
month: 'months ago'
},
copyright: undefined,
ClickShowText: undefined,
lightbox: 'fancybox',
Snackbar: undefined,
justifiedGallery: {
js: 'https://cdn.jsdelivr.net/npm/justifiedGallery/dist/js/jquery.justifiedGallery.min.js',
css: 'https://cdn.jsdelivr.net/npm/justifiedGallery/dist/css/justifiedGallery.min.css'
},
isPhotoFigcaption: false,
islazyload: false,
isanchor: false
};
var saveToLocal = {
set: function setWithExpiry(key, value, ttl) {
const now = new Date()
const expiryDay = ttl * 86400000
const item = {
value: value,
expiry: now.getTime() + expiryDay,
}
localStorage.setItem(key, JSON.stringify(item))
},
get: function getWithExpiry(key) {
const itemStr = localStorage.getItem(key)
if (!itemStr) {
return undefined
}
const item = JSON.parse(itemStr)
const now = new Date()
if (now.getTime() > item.expiry) {
localStorage.removeItem(key)
return undefined
}
return item.value
}
}</script><script id="config_change">var GLOBAL_CONFIG_SITE = {
isPost: false,
isHome: true,
isHighlightShrink: false,
isToc: false,
postUpdate: '2020-12-15 10:16:09'
}</script><noscript><style type="text/css">
#nav {
opacity: 1
}
.justified-gallery img {
opacity: 1
}
#recent-posts time,
#post-meta time {
display: inline !important
}
</style></noscript><script>(function () { window.activateDarkMode = function () {
document.documentElement.setAttribute('data-theme', 'dark')
if (document.querySelector('meta[name="theme-color"]') !== null) {
document.querySelector('meta[name="theme-color"]').setAttribute('content', '#0d0d0d')
}
}
window.activateLightMode = function () {
document.documentElement.setAttribute('data-theme', 'light')
if (document.querySelector('meta[name="theme-color"]') !== null) {
document.querySelector('meta[name="theme-color"]').setAttribute('content', '#ffffff')
}
}
const autoChangeMode = 'false'
const t = saveToLocal.get('theme')
if (autoChangeMode === '1') {
const isDarkMode = window.matchMedia('(prefers-color-scheme: dark)').matches
const isLightMode = window.matchMedia('(prefers-color-scheme: light)').matches
const isNotSpecified = window.matchMedia('(prefers-color-scheme: no-preference)').matches
const hasNoSupport = !isDarkMode && !isLightMode && !isNotSpecified
if (t === undefined) {
if (isLightMode) activateLightMode()
else if (isDarkMode) activateDarkMode()
else if (isNotSpecified || hasNoSupport) {
const now = new Date()
const hour = now.getHours()
const isNight = hour <= 6 || hour >= 18
isNight ? activateDarkMode() : activateLightMode()
}
window.matchMedia('(prefers-color-scheme: dark)').addListener(function (e) {
if (saveToLocal.get('theme') === undefined) {
e.matches ? activateDarkMode() : activateLightMode()
}
})
} else if (t === 'light') activateLightMode()
else activateDarkMode()
} else if (autoChangeMode === '2') {
const now = new Date()
const hour = now.getHours()
const isNight = hour <= 6 || hour >= 18
if (t === undefined) isNight ? activateDarkMode() : activateLightMode()
else if (t === 'light') activateLightMode()
else activateDarkMode()
} else {
if (t === 'dark') activateDarkMode()
else if (t === 'light') activateLightMode()
}const asideStatus = saveToLocal.get('aside-status')
if (asideStatus !== undefined) {
if (asideStatus === 'hide') {
document.documentElement.classList.add('hide-aside')
} else {
document.documentElement.classList.remove('hide-aside')
}
}})()</script><meta name="generator" content="Hexo 5.2.0"></head><body><div id="sidebar"><div id="menu-mask"></div><div id="sidebar-menus"><div class="author-avatar"><img class="avatar-img" src="/myblog1.github.io/null" onerror="onerror=null;src='/img/friend_404.gif'" alt="avatar"/></div><div class="site-data"><div class="data-item is-center"><div class="data-item-link"><a href="/myblog1.github.io/archives/"><div class="headline">Articles</div><div class="length-num">4</div></a></div></div></div><hr/></div></div><div id="body-wrap"><header class="full_page" id="page-header"><nav id="nav"><span id="blog_name"><a id="site-name" href="/myblog1.github.io/">LoveNote 莹莹和他的跟班</a></span><span id="menus"><span class="close" id="toggle-menu"><a class="site-page"><i class="fas fa-bars fa-fw"></i></a></span></span></nav><div id="site-info"><h1 id="site-title">LoveNote 莹莹和他的跟班</h1><div id="site-subtitle"><span id="subtitle"></span></div></div><div id="scroll-down"><i class="fas fa-angle-down scroll-down-effects"></i></div></header><main class="layout" id="content-inner"><div class="recent-posts" id="recent-posts"><div class="recent-post-item"><div class="post_cover left_radius"><a href="/myblog1.github.io/2020/12/15/love-letter/" title="love letter"> <img class="post_bg" src="https://cdn.jsdelivr.net/npm/butterfly-extsrc@1/img/default.jpg" onerror="this.onerror=null;this.src='/myblog1.github.io/img/404.jpg'" alt="love letter"></a></div><div class="recent-post-info"><a class="article-title" href="/myblog1.github.io/2020/12/15/love-letter/" title="love letter">love letter</a><div class="article-meta-wrap"><span class="post-meta-date"><i class="far fa-calendar-alt"></i><span class="article-meta-label">Created</span><time datetime="2020-12-15T02:14:34.000Z" title="Created 2020-12-15 10:14:34">2020-12-15</time></span></div><div class="content">我们认识也有段时间了,这段时间里因为有你才绽放更好的自己,认识你的这段时间里有酸甜苦辣,但唯不变的是我对你的爱,喜欢手被你握在掌心的感觉,想和你深爱到老,牵手一生。原谅我以前的任性,希望下辈子还能遇见你,既然爱上你我就不后悔,我想永远陪着你,至于我们之间,再遇见你之前,世界是一片荒原,遇到你之后世界是一片乐园,我想最甜蜜的事,就是在未来的每一天里,被你喜欢,把你紧紧抱住,真想紧紧的抱住你,让你感觉到我因爱你而加快的心跳,真想紧紧搂住你让你体会我因爱你而急促的呼吸,我给你的可能不是你想要的,但我认为是最好的,我希望以后那个会陪我很久很久的那个人是你,和我互道晚安,晚上抱着我睡觉的那个人是你,那个往死里宠我的人是你,很想很想我起一辈子,一开始我没有想到会这么喜欢你,只想从你的全世界路过,再陪你路过全世界,我想要你离不开我,这样我就不用担心有一天你会走了,我相要的至始至终就是一个你,夏有芒果冬有板栗,但是我的四季有你,虽然我活不到世界末日,但是我会陪你到心跳结束,不知道该说什么了,这一刻只知道我很想你!
</div></div></div><div class="recent-post-item"><div class="post_cover right_radius"><a href="/myblog1.github.io/2020/12/10/pics/" title="pics"> <img class="post_bg" src="https://cdn.jsdelivr.net/npm/butterfly-extsrc@1/img/default.jpg" onerror="this.onerror=null;this.src='/myblog1.github.io/img/404.jpg'" alt="pics"></a></div><div class="recent-post-info"><a class="article-title" href="/myblog1.github.io/2020/12/10/pics/" title="pics">pics</a><div class="article-meta-wrap"><span class="post-meta-date"><i class="far fa-calendar-alt"></i><span class="article-meta-label">Created</span><time datetime="2020-12-10T04:25:32.000Z" title="Created 2020-12-10 12:25:32">2020-12-10</time></span></div><div class="content">
</div></div></div><div class="recent-post-item"><div class="post_cover left_radius"><a href="/myblog1.github.io/2020/12/10/%E7%BB%9D%E5%AF%B9%E4%B8%8D%E8%83%BD%E5%81%9A%E7%9A%84%E4%BA%8B%E6%83%85/" title="绝对不能做的事情"> <img class="post_bg" src="https://cdn.jsdelivr.net/npm/butterfly-extsrc@1/img/default.jpg" onerror="this.onerror=null;this.src='/myblog1.github.io/img/404.jpg'" alt="绝对不能做的事情"></a></div><div class="recent-post-info"><a class="article-title" href="/myblog1.github.io/2020/12/10/%E7%BB%9D%E5%AF%B9%E4%B8%8D%E8%83%BD%E5%81%9A%E7%9A%84%E4%BA%8B%E6%83%85/" title="绝对不能做的事情">绝对不能做的事情</a><div class="article-meta-wrap"><span class="post-meta-date"><i class="far fa-calendar-alt"></i><span class="article-meta-label">Created</span><time datetime="2020-12-09T17:13:03.000Z" title="Created 2020-12-10 01:13:03">2020-12-10</time></span></div><div class="content">
不能xxoo(原则性不能)
不能撒谎和欺骗(因为只有零次和无数次)
不能轻易提分手(因为很伤人的,我不会再伤害你的)
不能拿对方和其他人作比较,尤其是前任(哪怕很生气的时候都不行,你都已经是我的了,就不能想着别人了)
不能是单方面的宠爱和付出(感情是相互的,男孩子也要被宠爱的)
不能咬我胸,虽然我不知道什么感觉,但是会疼。
不能一起洗澡,会克制不住!(但是可以一起去泡温泉,游泳)
不能动手打人(这是在生气或者吵架的时候)
脱对方的衣服,不能到最后一层防御
不能一起喝酒之后住酒店
</div></div></div><div class="recent-post-item"><div class="post_cover right_radius"><a href="/myblog1.github.io/2020/12/10/You-have-me-at-the-first-sight/" title="You have me at the first sight"> <img class="post_bg" src="https://cdn.jsdelivr.net/npm/butterfly-extsrc@1/img/default.jpg" onerror="this.onerror=null;this.src='/myblog1.github.io/img/404.jpg'" alt="You have me at the first sight"></a></div><div class="recent-post-info"><a class="article-title" href="/myblog1.github.io/2020/12/10/You-have-me-at-the-first-sight/" title="You have me at the first sight">You have me at the first sight</a><div class="article-meta-wrap"><span class="post-meta-date"><i class="far fa-calendar-alt"></i><span class="article-meta-label">Created</span><time datetime="2020-12-09T17:08:44.000Z" title="Created 2020-12-10 01:08:44">2020-12-10</time></span></div><div class="content">宝宝我最爱你了呢!!!</div></div></div><nav id="pagination"><div class="pagination"><span class="page-number current">1</span></div></nav></div><div class="aside_content" id="aside_content"><div class="card-widget card-info"><div class="card-content"><div class="card-info-avatar is-center"><img class="avatar-img" src="/myblog1.github.io/null" onerror="this.onerror=null;this.src='/myblog1.github.io/img/friend_404.gif'" alt="avatar"/><div class="author-info__name">小跟班</div><div class="author-info__description"></div></div><div class="card-info-data"><div class="card-info-data-item is-center"><a href="/myblog1.github.io/archives/"><div class="headline">Articles</div><div class="length-num">4</div></a></div></div><a class="button--animated" id="card-info-btn" target="_blank" rel="noopener" href="https://github.com/xxxxxx"><i class="fab fa-github"></i><span>Follow Me</span></a></div></div><div class="card-widget card-announcement"><div class="card-content"><div class="item-headline"><i class="fas fa-bullhorn card-announcement-animation"></i><span>Announcement</span></div><div class="announcement_content">This is my Blog</div></div></div><div class="sticky_layout"><div class="card-widget card-recent-post"><div class="card-content"><div class="item-headline"><i class="fas fa-history"></i><span>Recent Post</span></div><div class="aside-list"><div class="aside-list-item"><a class="thumbnail" href="/myblog1.github.io/2020/12/15/love-letter/" title="love letter"><img src="https://cdn.jsdelivr.net/npm/butterfly-extsrc@1/img/default.jpg" onerror="this.onerror=null;this.src='/myblog1.github.io/img/404.jpg'" alt="love letter"/></a><div class="content"><a class="title" href="/myblog1.github.io/2020/12/15/love-letter/" title="love letter">love letter</a><time datetime="2020-12-15T02:14:34.000Z" title="Created 2020-12-15 10:14:34">2020-12-15</time></div></div><div class="aside-list-item"><a class="thumbnail" href="/myblog1.github.io/2020/12/10/pics/" title="pics"><img src="https://cdn.jsdelivr.net/npm/butterfly-extsrc@1/img/default.jpg" onerror="this.onerror=null;this.src='/myblog1.github.io/img/404.jpg'" alt="pics"/></a><div class="content"><a class="title" href="/myblog1.github.io/2020/12/10/pics/" title="pics">pics</a><time datetime="2020-12-10T04:25:32.000Z" title="Created 2020-12-10 12:25:32">2020-12-10</time></div></div><div class="aside-list-item"><a class="thumbnail" href="/myblog1.github.io/2020/12/10/%E7%BB%9D%E5%AF%B9%E4%B8%8D%E8%83%BD%E5%81%9A%E7%9A%84%E4%BA%8B%E6%83%85/" title="绝对不能做的事情"><img src="https://cdn.jsdelivr.net/npm/butterfly-extsrc@1/img/default.jpg" onerror="this.onerror=null;this.src='/myblog1.github.io/img/404.jpg'" alt="绝对不能做的事情"/></a><div class="content"><a class="title" href="/myblog1.github.io/2020/12/10/%E7%BB%9D%E5%AF%B9%E4%B8%8D%E8%83%BD%E5%81%9A%E7%9A%84%E4%BA%8B%E6%83%85/" title="绝对不能做的事情">绝对不能做的事情</a><time datetime="2020-12-09T17:13:03.000Z" title="Created 2020-12-10 01:13:03">2020-12-10</time></div></div><div class="aside-list-item"><a class="thumbnail" href="/myblog1.github.io/2020/12/10/You-have-me-at-the-first-sight/" title="You have me at the first sight"><img src="https://cdn.jsdelivr.net/npm/butterfly-extsrc@1/img/default.jpg" onerror="this.onerror=null;this.src='/myblog1.github.io/img/404.jpg'" alt="You have me at the first sight"/></a><div class="content"><a class="title" href="/myblog1.github.io/2020/12/10/You-have-me-at-the-first-sight/" title="You have me at the first sight">You have me at the first sight</a><time datetime="2020-12-09T17:08:44.000Z" title="Created 2020-12-10 01:08:44">2020-12-10</time></div></div></div></div></div><div class="card-widget card-archives"><div class="card-content"><div class="item-headline"><i class="fas fa-archive"></i><span>Archives</span></div><ul class="card-archive-list"><li class="card-archive-list-item"><a class="card-archive-list-link" href="/myblog1.github.io/archives/2020/12/"><span class="card-archive-list-date">十二月 2020</span><span class="card-archive-list-count">4</span></a></li></ul></div></div><div class="card-widget card-webinfo"><div class="card-content"><div class="item-headline"><i class="fas fa-chart-line"></i><span>Info</span></div><div class="webinfo"><div class="webinfo-item"><div class="item-name">Article :</div><div class="item-count">4</div></div><div class="webinfo-item"><div class="item-name">UV :</div><div class="item-count" id="busuanzi_value_site_uv"></div></div><div class="webinfo-item"><div class="item-name">PV :</div><div class="item-count" id="busuanzi_value_site_pv"></div></div><div class="webinfo-item"><div class="item-name">Last Push :</div><div class="item-count" id="last-push-date" data-lastPushDate="2020-12-15T02:16:09.322Z"></div></div></div></div></div></div></div></main><footer id="footer"><div id="footer-wrap"><div class="copyright">©2020 By 小跟班</div><div class="framework-info"><span>Framework </span><a target="_blank" rel="noopener" href="https://hexo.io">Hexo</a><span class="footer-separator">|</span><span>Theme </span><a target="_blank" rel="noopener" href="https://github.com/jerryc127/hexo-theme-butterfly">Butterfly</a></div></div></footer></div><div id="rightside"><div id="rightside-config-hide"><button id="darkmode" type="button" title="Switch Between Light And Dark Mode"><i class="fas fa-adjust"></i></button><button id="hide-aside-btn" type="button"><i class="fas fa-arrows-alt-h"></i></button></div><div id="rightside-config-show"><button id="rightside_config" type="button" title="Setting"><i class="fas fa-cog"></i></button><button id="go-up" type="button" title="Back To Top"><i class="fas fa-arrow-up"></i></button></div></div><div><script src="https://cdn.jsdelivr.net/npm/jquery@latest/dist/jquery.min.js"></script><script src="/myblog1.github.io/js/utils.js"></script><script src="/myblog1.github.io/js/main.js"></script><script src="https://cdn.jsdelivr.net/npm/@fancyapps/fancybox@latest/dist/jquery.fancybox.min.js"></script><div class="js-pjax"><script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script></div></div></body></html>