Skip to content

Commit 20b5d7f

Browse files
author
bigfish
committed
Site updated: YYYY-04-2025年4月25日 22:49:01
1 parent 8d7dfcc commit 20b5d7f

File tree

16 files changed

+2333
-0
lines changed

16 files changed

+2333
-0
lines changed

2025/04/25/hello-world/index.html

Lines changed: 233 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,233 @@
1+
2+
<!DOCTYPE html>
3+
<html lang="zh">
4+
<head>
5+
<meta charset="utf-8" />
6+
<title>Hello World | Bigfish</title>
7+
<meta name="author" content="John Doe" />
8+
<meta name="description" content="" />
9+
<meta name="keywords" content="" />
10+
<meta
11+
name="viewport"
12+
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
13+
/>
14+
<link rel="icon" href="/images/avatar.jpg" />
15+
<link rel="preconnect" href="https://s4.zstatic.net" />
16+
<script src="https://s4.zstatic.net/ajax/libs/vue/3.3.7/vue.global.prod.min.js"></script>
17+
<link rel="stylesheet" href="https://s4.zstatic.net/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
18+
<link rel="preconnect" href="https://fonts.googleapis.cn" />
19+
<link rel="preconnect" href="https://fonts.gstatic.cn" crossorigin />
20+
<link
21+
rel="stylesheet"
22+
href="https://fonts.googleapis.cn/css2?family=Fira+Code:wght@400;500;600;700&family=Lexend:wght@400;500;600;700;800;900&family=Noto+Sans+SC:wght@400;500;600;700;800;900&display=swap"
23+
/>
24+
<script> const mixins = {}; </script>
25+
26+
<script src="https://polyfill.alicdn.com/v3/polyfill.min.js?features=default"></script>
27+
28+
29+
<script src="https://s4.zstatic.net/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
30+
<script src="https://s4.zstatic.net/ajax/libs/highlightjs-line-numbers.js/2.8.0/highlightjs-line-numbers.min.js"></script>
31+
<link
32+
rel="stylesheet"
33+
href="https://s4.zstatic.net/ajax/libs/highlight.js/11.9.0/styles/github.min.css"
34+
/>
35+
<script src="/js/lib/highlight.js"></script>
36+
37+
38+
39+
<script src="/js/lib/preview.js"></script>
40+
41+
42+
43+
44+
45+
46+
47+
48+
49+
<link rel="stylesheet" href="/css/main.css" />
50+
51+
<meta name="generator" content="Hexo 6.3.0"></head>
52+
<body>
53+
<div id="layout">
54+
<transition name="fade">
55+
<div id="loading" v-show="loading">
56+
<div id="loading-circle">
57+
<h2>LOADING</h2>
58+
<p>加载过慢请开启缓存 浏览器默认开启</p>
59+
<img src="/images/loading.gif" />
60+
</div>
61+
</div>
62+
</transition>
63+
<div id="menu" :class="{ hidden: hiddenMenu, 'menu-color': menuColor}">
64+
<nav id="desktop-menu">
65+
<a class="title" href="/">
66+
<span>BIGFISH</span>
67+
</a>
68+
69+
<a href="/">
70+
<i class="fa-solid fa-house fa-fw"></i>
71+
<span>&ensp;Home</span>
72+
</a>
73+
74+
<a href="/about">
75+
<i class="fa-solid fa-id-card fa-fw"></i>
76+
<span>&ensp;About</span>
77+
</a>
78+
79+
<a href="/archives">
80+
<i class="fa-solid fa-box-archive fa-fw"></i>
81+
<span>&ensp;Archives</span>
82+
</a>
83+
84+
<a href="/categories">
85+
<i class="fa-solid fa-bookmark fa-fw"></i>
86+
<span>&ensp;Categories</span>
87+
</a>
88+
89+
<a href="/tags">
90+
<i class="fa-solid fa-tags fa-fw"></i>
91+
<span>&ensp;Tags</span>
92+
</a>
93+
94+
</nav>
95+
<nav id="mobile-menu">
96+
<div class="title" @click="showMenuItems = !showMenuItems">
97+
<i class="fa-solid fa-bars fa-fw"></i>
98+
<span>&emsp;BIGFISH</span>
99+
</div>
100+
<transition name="slide">
101+
<div class="items" v-show="showMenuItems">
102+
103+
<a href="/">
104+
<div class="item">
105+
<div style="min-width: 20px; max-width: 50px; width: 10%">
106+
<i class="fa-solid fa-house fa-fw"></i>
107+
</div>
108+
<div style="min-width: 100px; max-width: 150%; width: 20%">Home</div>
109+
</div>
110+
</a>
111+
112+
<a href="/about">
113+
<div class="item">
114+
<div style="min-width: 20px; max-width: 50px; width: 10%">
115+
<i class="fa-solid fa-id-card fa-fw"></i>
116+
</div>
117+
<div style="min-width: 100px; max-width: 150%; width: 20%">About</div>
118+
</div>
119+
</a>
120+
121+
<a href="/archives">
122+
<div class="item">
123+
<div style="min-width: 20px; max-width: 50px; width: 10%">
124+
<i class="fa-solid fa-box-archive fa-fw"></i>
125+
</div>
126+
<div style="min-width: 100px; max-width: 150%; width: 20%">Archives</div>
127+
</div>
128+
</a>
129+
130+
<a href="/categories">
131+
<div class="item">
132+
<div style="min-width: 20px; max-width: 50px; width: 10%">
133+
<i class="fa-solid fa-bookmark fa-fw"></i>
134+
</div>
135+
<div style="min-width: 100px; max-width: 150%; width: 20%">Categories</div>
136+
</div>
137+
</a>
138+
139+
<a href="/tags">
140+
<div class="item">
141+
<div style="min-width: 20px; max-width: 50px; width: 10%">
142+
<i class="fa-solid fa-tags fa-fw"></i>
143+
</div>
144+
<div style="min-width: 100px; max-width: 150%; width: 20%">Tags</div>
145+
</div>
146+
</a>
147+
148+
</div>
149+
</transition>
150+
</nav>
151+
</div>
152+
<transition name="fade">
153+
<div id="menu-curtain" @click="showMenuItems = !showMenuItems" v-show="showMenuItems"></div>
154+
</transition>
155+
156+
<div id="main" :class="loading ? 'into-enter-from': 'into-enter-active'">
157+
<div class="article">
158+
<div>
159+
<h1>Hello World</h1>
160+
</div>
161+
<div class="info">
162+
<span class="date">
163+
<span class="icon">
164+
<i class="fa-solid fa-calendar fa-fw"></i>
165+
</span>
166+
2025/4/25
167+
</span>
168+
169+
170+
</div>
171+
172+
<div class="content" v-pre>
173+
<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>
174+
<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><pre><code class="language-bash">$ hexo new &quot;My New Post&quot;
175+
</code></pre>
176+
<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/writing.html">Writing</a></p>
177+
<h3 id="Run-server"><a href="#Run-server" class="headerlink" title="Run server"></a>Run server</h3><pre><code class="language-bash">$ hexo server
178+
</code></pre>
179+
<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/server.html">Server</a></p>
180+
<h3 id="Generate-static-files"><a href="#Generate-static-files" class="headerlink" title="Generate static files"></a>Generate static files</h3><pre><code class="language-bash">$ hexo generate
181+
</code></pre>
182+
<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/generating.html">Generating</a></p>
183+
<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><pre><code class="language-bash">$ hexo deploy
184+
</code></pre>
185+
<p>More info: <a target="_blank" rel="noopener" href="https://hexo.io/docs/one-command-deployment.html">Deployment</a></p>
186+
187+
</div>
188+
189+
190+
191+
192+
193+
194+
195+
</div>
196+
197+
<footer id="footer">
198+
<div id="footer-wrap">
199+
<div>
200+
&copy;
201+
2022 - 2025 Bigfish
202+
<span id="footer-icon">
203+
<i class="fa-solid fa-font-awesome fa-fw"></i>
204+
</span>
205+
&commat;John Doe
206+
</div>
207+
<div>
208+
Based on the <a target="_blank" rel="noopener" href="https://hexo.io">Hexo Engine</a> &amp;
209+
<a target="_blank" rel="noopener" href="https://github.com/theme-particlex/hexo-theme-particlex">ParticleX Theme</a>
210+
</div>
211+
212+
</div>
213+
</footer>
214+
215+
</div>
216+
217+
<transition name="fade">
218+
<div id="preview" ref="preview" v-show="previewShow">
219+
<img id="preview-content" ref="previewContent" />
220+
</div>
221+
</transition>
222+
223+
</div>
224+
<script src="/js/main.js"></script>
225+
226+
227+
228+
229+
230+
231+
232+
</body>
233+
</html>

0 commit comments

Comments
 (0)