168 lines
16 KiB
HTML
168 lines
16 KiB
HTML
|
<!DOCTYPE html><html lang="en" 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.0,viewport-fit=cover"><title>Hello World | Hexo</title><meta name="author" content="John Doe"><meta name="copyright" content="John Doe"><meta name="format-detection" content="telephone=no"><meta name="theme-color" content="#ffffff"><meta name="description" content="Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick">
|
||
|
<meta property="og:type" content="article">
|
||
|
<meta property="og:title" content="Hello World">
|
||
|
<meta property="og:url" content="https://blog.hope-now.top:8443/posts/1/index.html">
|
||
|
<meta property="og:site_name" content="Hexo">
|
||
|
<meta property="og:description" content="Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick">
|
||
|
<meta property="og:locale" content="en_US">
|
||
|
<meta property="og:image" content="https://i.loli.net/2021/02/24/5O1day2nriDzjSu.png">
|
||
|
<meta property="article:published_time" content="2024-05-21T14:13:21.778Z">
|
||
|
<meta property="article:modified_time" content="2024-05-21T14:13:21.778Z">
|
||
|
<meta property="article:author" content="John Doe">
|
||
|
<meta name="twitter:card" content="summary">
|
||
|
<meta name="twitter:image" content="https://i.loli.net/2021/02/24/5O1day2nriDzjSu.png"><link rel="shortcut icon" href="/img/favicon.png"><link rel="canonical" href="https://blog.hope-now.top:8443/posts/1/index.html"><link rel="preconnect" href="//cdn.jsdelivr.net"/><link rel="preconnect" href="//busuanzi.ibruce.info"/><link rel="stylesheet" href="/css/index.css?v=4.13.0"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.5.1/css/all.min.css"><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fancyapps/ui@5.0.33/dist/fancybox/fancybox.min.css" media="print" onload="this.media='all'"><script>const GLOBAL_CONFIG = {
|
||
|
root: '/',
|
||
|
algolia: undefined,
|
||
|
localSearch: undefined,
|
||
|
translate: undefined,
|
||
|
noticeOutdate: undefined,
|
||
|
highlight: {"plugin":"highlight.js","highlightCopy":true,"highlightLang":true,"highlightHeightLimit":false},
|
||
|
copy: {
|
||
|
success: 'Copy Successful',
|
||
|
error: 'Copy Error',
|
||
|
noSupport: 'Browser Not Supported'
|
||
|
},
|
||
|
relativeDate: {
|
||
|
homepage: false,
|
||
|
post: false
|
||
|
},
|
||
|
runtime: '',
|
||
|
dateSuffix: {
|
||
|
just: 'Just now',
|
||
|
min: 'minutes ago',
|
||
|
hour: 'hours ago',
|
||
|
day: 'days ago',
|
||
|
month: 'months ago'
|
||
|
},
|
||
|
copyright: undefined,
|
||
|
lightbox: 'fancybox',
|
||
|
Snackbar: undefined,
|
||
|
infinitegrid: {
|
||
|
js: 'https://cdn.jsdelivr.net/npm/@egjs/infinitegrid@4.11.1/dist/infinitegrid.min.js',
|
||
|
buttonText: 'Load More'
|
||
|
},
|
||
|
isPhotoFigcaption: false,
|
||
|
islazyload: false,
|
||
|
isAnchor: false,
|
||
|
percent: {
|
||
|
toc: true,
|
||
|
rightside: false,
|
||
|
},
|
||
|
autoDarkmode: false
|
||
|
}</script><script id="config-diff">var GLOBAL_CONFIG_SITE = {
|
||
|
title: 'Hello World',
|
||
|
isPost: true,
|
||
|
isHome: false,
|
||
|
isHighlightShrink: false,
|
||
|
isToc: true,
|
||
|
postUpdate: '2024-05-21 22:13:21'
|
||
|
}</script><script>(win=>{
|
||
|
win.saveToLocal = {
|
||
|
set: (key, value, ttl) => {
|
||
|
if (ttl === 0) return
|
||
|
const now = Date.now()
|
||
|
const expiry = now + ttl * 86400000
|
||
|
const item = {
|
||
|
value,
|
||
|
expiry
|
||
|
}
|
||
|
localStorage.setItem(key, JSON.stringify(item))
|
||
|
},
|
||
|
|
||
|
get: key => {
|
||
|
const itemStr = localStorage.getItem(key)
|
||
|
|
||
|
if (!itemStr) {
|
||
|
return undefined
|
||
|
}
|
||
|
const item = JSON.parse(itemStr)
|
||
|
const now = Date.now()
|
||
|
|
||
|
if (now > item.expiry) {
|
||
|
localStorage.removeItem(key)
|
||
|
return undefined
|
||
|
}
|
||
|
return item.value
|
||
|
}
|
||
|
}
|
||
|
|
||
|
win.getScript = (url, attr = {}) => new Promise((resolve, reject) => {
|
||
|
const script = document.createElement('script')
|
||
|
script.src = url
|
||
|
script.async = true
|
||
|
script.onerror = reject
|
||
|
script.onload = script.onreadystatechange = function() {
|
||
|
const loadState = this.readyState
|
||
|
if (loadState && loadState !== 'loaded' && loadState !== 'complete') return
|
||
|
script.onload = script.onreadystatechange = null
|
||
|
resolve()
|
||
|
}
|
||
|
|
||
|
Object.keys(attr).forEach(key => {
|
||
|
script.setAttribute(key, attr[key])
|
||
|
})
|
||
|
|
||
|
document.head.appendChild(script)
|
||
|
})
|
||
|
|
||
|
win.getCSS = (url, id = false) => new Promise((resolve, reject) => {
|
||
|
const link = document.createElement('link')
|
||
|
link.rel = 'stylesheet'
|
||
|
link.href = url
|
||
|
if (id) link.id = id
|
||
|
link.onerror = reject
|
||
|
link.onload = link.onreadystatechange = function() {
|
||
|
const loadState = this.readyState
|
||
|
if (loadState && loadState !== 'loaded' && loadState !== 'complete') return
|
||
|
link.onload = link.onreadystatechange = null
|
||
|
resolve()
|
||
|
}
|
||
|
document.head.appendChild(link)
|
||
|
})
|
||
|
|
||
|
win.activateDarkMode = () => {
|
||
|
document.documentElement.setAttribute('data-theme', 'dark')
|
||
|
if (document.querySelector('meta[name="theme-color"]') !== null) {
|
||
|
document.querySelector('meta[name="theme-color"]').setAttribute('content', '#0d0d0d')
|
||
|
}
|
||
|
}
|
||
|
win.activateLightMode = () => {
|
||
|
document.documentElement.setAttribute('data-theme', 'light')
|
||
|
if (document.querySelector('meta[name="theme-color"]') !== null) {
|
||
|
document.querySelector('meta[name="theme-color"]').setAttribute('content', '#ffffff')
|
||
|
}
|
||
|
}
|
||
|
const t = saveToLocal.get('theme')
|
||
|
|
||
|
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')
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const detectApple = () => {
|
||
|
if(/iPad|iPhone|iPod|Macintosh/.test(navigator.userAgent)){
|
||
|
document.documentElement.classList.add('apple')
|
||
|
}
|
||
|
}
|
||
|
detectApple()
|
||
|
})(window)</script><meta name="generator" content="Hexo 7.2.0"></head><body><div id="sidebar"><div id="menu-mask"></div><div id="sidebar-menus"><div class="avatar-img is-center"><img src="https://i.loli.net/2021/02/24/5O1day2nriDzjSu.png" onerror="onerror=null;src='/img/friend_404.gif'" alt="avatar"/></div><div class="sidebar-site-data site-data is-center"><a href="/archives/"><div class="headline">Articles</div><div class="length-num">1</div></a><a href="/tags/"><div class="headline">Tags</div><div class="length-num">0</div></a><a href="/categories/"><div class="headline">Categories</div><div class="length-num">0</div></a></div><hr class="custom-hr"/></div></div><div class="post" id="body-wrap"><header class="post-bg" id="page-header"><nav id="nav"><span id="blog-info"><a href="/" title="Hexo"><span class="site-name">Hexo</span></a></span><div id="menus"><div id="toggle-menu"><a class="site-page" href="javascript:void(0);"><i class="fas fa-bars fa-fw"></i></a></div></div></nav><div id="post-info"><h1 class="post-title">Hello World</h1><div id="post-meta"><div class="meta-firstline"><span class="post-meta-date"><i class="far fa-calendar-alt fa-fw post-meta-icon"></i><span class="post-meta-label">Created</span><time class="post-meta-date-created" datetime="2024-05-21T14:13:21.778Z" title="Created 2024-05-21 22:13:21">2024-05-21</time><span class="post-meta-separator">|</span><i class="fas fa-history fa-fw post-meta-icon"></i><span class="post-meta-label">Updated</span><time class="post-meta-date-updated" datetime="2024-05-21T14:13:21.778Z" title="Updated 2024-05-21 22:13:21">2024-05-21</time></span></div><div class="meta-secondline"><span class="post-meta-separator">|</span><span class="post-meta-pv-cv" id="" data-flag-title="Hello World"><i class="far fa-eye fa-fw post-meta-icon"></i><span class="post-meta-label">Post Views:</span><span id="busuanzi_value_page_pv"><i class="fa-solid fa-spinner fa-spin"></i></span></span></div></div></div></header><main class="layout" id="content-inner"><div id="post"><article class="post-content" id="article-container"><p>Welcome to <a target="_blank" rel="noopener" href="https://hexo.io/">Hexo</a>! This is your very first post. Check <a target="_blank" rel="noopener" href="https://hexo.io/docs/">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a target="_blank" rel="noopener" href="https://hexo.io/docs/troubleshooting.html">troubleshooting</a> or you can ask me on <a target="_blank" rel="noopener" href="https://github.com/hexojs/hexo/issues">GitHub</a>.</p>
|
||
|
<h2 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h2><h3 id="Create-a-new-post"><a href="#Create-a-new-post" class="headerlink" title="Create a new post"></a>Create a new post</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo new <span class="string">"My New Post"</span></span><br></pre></td></tr></table></figure>
|
||
|
|
||
|
<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/writing.html">Writing</a></p>
|
||
|
<h3 id="Run-server"><a href="#Run-server" class="headerlink" title="Run server"></a>Run server</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo server</span><br></pre></td></tr></table></figure>
|
||
|
|
||
|
<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/server.html">Server</a></p>
|
||
|
<h3 id="Generate-static-files"><a href="#Generate-static-files" class="headerlink" title="Generate static files"></a>Generate static files</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo generate</span><br></pre></td></tr></table></figure>
|
||
|
|
||
|
<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/generating.html">Generating</a></p>
|
||
|
<h3 id="Deploy-to-remote-sites"><a href="#Deploy-to-remote-sites" class="headerlink" title="Deploy to remote sites"></a>Deploy to remote sites</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo deploy</span><br></pre></td></tr></table></figure>
|
||
|
|
||
|
<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/one-command-deployment.html">Deployment</a></p>
|
||
|
</article><div class="post-copyright"><div class="post-copyright__author"><span class="post-copyright-meta"><i class="fas fa-circle-user fa-fw"></i>Author: </span><span class="post-copyright-info"><a href="https://blog.hope-now.top:8443">John Doe</a></span></div><div class="post-copyright__type"><span class="post-copyright-meta"><i class="fas fa-square-arrow-up-right fa-fw"></i>Link: </span><span class="post-copyright-info"><a href="https://blog.hope-now.top:8443/posts/1/">https://blog.hope-now.top:8443/posts/1/</a></span></div><div class="post-copyright__notice"><span class="post-copyright-meta"><i class="fas fa-circle-exclamation fa-fw"></i>Copyright Notice: </span><span class="post-copyright-info">All articles in this blog are licensed under <a target="_blank" rel="noopener" href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a> unless stating additionally.</span></div></div><div class="tag_share"><div class="post-meta__tag-list"></div><div class="post_share"><div class="social-share" data-image="https://i.loli.net/2021/02/24/5O1day2nriDzjSu.png" data-sites="facebook,twitter,wechat,weibo,qq"></div><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/butterfly-extsrc@1.1.3/sharejs/dist/css/share.min.css" media="print" onload="this.media='all'"><script src="https://cdn.jsdelivr.net/npm/butterfly-extsrc@1.1.3/sharejs/dist/js/social-share.min.js" defer></script></div></div><nav class="pagination-post" id="pagination"></nav></div><div class="aside-content" id="aside-content"><div class="card-widget card-info"><div class="is-center"><div class="avatar-img"><img src="https://i.loli.net/2021/02/24/5O1day2nriDzjSu.png" onerror="this.onerror=null;this.src='/img/friend_404.gif'" alt="avatar"/></div><div class="author-info__name">John Doe</div><div class="author-info__description"></div></div><div class="card-info-data site-data is-center"><a href="/archives/"><div class="headline">Articles</div><div class="length-num">1</div></a><a href="/tags/"><div class="headline">Tags</div><div class="length-num">0</div></a><a href="/categories/"><div class="headline">Categories</div><div class="length-num">0</div></a></div><a 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 class="card-widget card-announcement"><div class="item-headline"><i class="fas fa-bullhorn fa-shake"></i><span>Announcement</span></div><div class="announcement_content">This is my Blog</div></div><div class="sticky_layout"><div class="card-widget" id="card-toc"><div class="item-headline"><i class="fas fa-stream"></i><span>Contents</span><span class="toc-percentage"></span></div><div class="toc-content"><ol class="toc"><li class="toc-item toc-level-2"><a class="toc-link" href="#Quick-Start"><span class="toc-number">1.</span> <span class="toc-text">Quick Start</span></a><ol class="toc-child"><li class="toc-item toc-level-3"><a class="toc-link" href="#Create-a-new-post"><span class="toc-number">1.1.</span> <span class="toc-text">Create a new post</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#Run-server"><span class="toc-number">1.2.</span> <span class="toc-text">Run server</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#Generate-static-files"><span class="toc-number">1.3.</span> <span class="toc-text">Generate static files</span></a></li><li class="toc-item toc-level-3"><a class="toc-link" href="#Deploy-to-remote-sites"><span class="toc-number">1.4.</span> <span class="toc-text">Deploy to remote sites</span></a></li></ol></li></ol></div></div><div class="card-widget card-recent-post"><div class="item-headline"><i class="fas fa-history"></i><span>Recent Post</span></div><div class="aside-list"><div class="aside-list-item no-cover"><div class="content"><a class="title" href="/posts/1/" title="Hello World">Hello World</a><time datetime="2024-05-21T14:13:21.778Z" title="Created 2024-05-21 22:13:21">2024-05-21</time></div></div></div></div></div></div></main><footer id="footer"><div id="footer-wr
|