-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
1,100 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,246 @@ | ||
|
||
<!DOCTYPE html> | ||
<html lang="zh-CN"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>疲惫 | BlueEve的小窝</title> | ||
<meta name="author" content="BlueEve" /> | ||
<meta name="description" content="纯在摆烂" /> | ||
<meta name="keywords" content="" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" | ||
/> | ||
<link rel="icon" href="/images/avatar.jpg" /> | ||
<link rel="preconnect" href="https://s4.zstatic.net" /> | ||
<script src="https://s4.zstatic.net/ajax/libs/vue/3.3.7/vue.global.prod.min.js"></script> | ||
<link rel="stylesheet" href="https://s4.zstatic.net/ajax/libs/font-awesome/6.4.2/css/all.min.css" /> | ||
<link rel="preconnect" href="https://fonts.googleapis.cn" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.cn" crossorigin /> | ||
<link | ||
rel="stylesheet" | ||
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" | ||
/> | ||
<script> const mixins = {}; </script> | ||
|
||
<script src="https://polyfill.alicdn.com/v3/polyfill.min.js?features=default"></script> | ||
|
||
|
||
<script src="https://s4.zstatic.net/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script> | ||
<script src="https://s4.zstatic.net/ajax/libs/highlightjs-line-numbers.js/2.8.0/highlightjs-line-numbers.min.js"></script> | ||
<link | ||
rel="stylesheet" | ||
href="https://s4.zstatic.net/ajax/libs/highlight.js/11.9.0/styles/github.min.css" | ||
/> | ||
<script src="/js/lib/highlight.js"></script> | ||
|
||
|
||
|
||
<script src="/js/lib/preview.js"></script> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<link rel="stylesheet" href="/css/main.css" /> | ||
|
||
<meta name="generator" content="Hexo 7.3.0"></head> | ||
<body> | ||
<div id="layout"> | ||
<transition name="fade"> | ||
<div id="loading" v-show="loading"> | ||
<div id="loading-circle"> | ||
<h2>LOADING</h2> | ||
<p>加载过慢请开启缓存 浏览器默认开启</p> | ||
<img src="/images/loading.gif" /> | ||
</div> | ||
</div> | ||
</transition> | ||
<div id="menu" :class="{ hidden: hiddenMenu, 'menu-color': menuColor}"> | ||
<nav id="desktop-menu"> | ||
<a class="title" href="/"> | ||
<span>BLUEEVE的小窝</span> | ||
</a> | ||
|
||
<a href="/"> | ||
<i class="fa-solid fa-house fa-fw"></i> | ||
<span> Home</span> | ||
</a> | ||
|
||
<a href="/about"> | ||
<i class="fa-solid fa-id-card fa-fw"></i> | ||
<span> About</span> | ||
</a> | ||
|
||
<a href="/archives"> | ||
<i class="fa-solid fa-box-archive fa-fw"></i> | ||
<span> Archives</span> | ||
</a> | ||
|
||
<a href="/categories/2024"> | ||
<i class="fa-solid fa-bookmark fa-fw"></i> | ||
<span> Categories</span> | ||
</a> | ||
|
||
<a href="/tags/%E7%94%9F%E6%B4%BB"> | ||
<i class="fa-solid fa-tags fa-fw"></i> | ||
<span> Tags</span> | ||
</a> | ||
|
||
</nav> | ||
<nav id="mobile-menu"> | ||
<div class="title" @click="showMenuItems = !showMenuItems"> | ||
<i class="fa-solid fa-bars fa-fw"></i> | ||
<span> BLUEEVE的小窝</span> | ||
</div> | ||
<transition name="slide"> | ||
<div class="items" v-show="showMenuItems"> | ||
|
||
<a href="/"> | ||
<div class="item"> | ||
<div style="min-width: 20px; max-width: 50px; width: 10%"> | ||
<i class="fa-solid fa-house fa-fw"></i> | ||
</div> | ||
<div style="min-width: 100px; max-width: 150%; width: 20%">Home</div> | ||
</div> | ||
</a> | ||
|
||
<a href="/about"> | ||
<div class="item"> | ||
<div style="min-width: 20px; max-width: 50px; width: 10%"> | ||
<i class="fa-solid fa-id-card fa-fw"></i> | ||
</div> | ||
<div style="min-width: 100px; max-width: 150%; width: 20%">About</div> | ||
</div> | ||
</a> | ||
|
||
<a href="/archives"> | ||
<div class="item"> | ||
<div style="min-width: 20px; max-width: 50px; width: 10%"> | ||
<i class="fa-solid fa-box-archive fa-fw"></i> | ||
</div> | ||
<div style="min-width: 100px; max-width: 150%; width: 20%">Archives</div> | ||
</div> | ||
</a> | ||
|
||
<a href="/categories/2024"> | ||
<div class="item"> | ||
<div style="min-width: 20px; max-width: 50px; width: 10%"> | ||
<i class="fa-solid fa-bookmark fa-fw"></i> | ||
</div> | ||
<div style="min-width: 100px; max-width: 150%; width: 20%">Categories</div> | ||
</div> | ||
</a> | ||
|
||
<a href="/tags/%E7%94%9F%E6%B4%BB"> | ||
<div class="item"> | ||
<div style="min-width: 20px; max-width: 50px; width: 10%"> | ||
<i class="fa-solid fa-tags fa-fw"></i> | ||
</div> | ||
<div style="min-width: 100px; max-width: 150%; width: 20%">Tags</div> | ||
</div> | ||
</a> | ||
|
||
</div> | ||
</transition> | ||
</nav> | ||
</div> | ||
<transition name="fade"> | ||
<div id="menu-curtain" @click="showMenuItems = !showMenuItems" v-show="showMenuItems"></div> | ||
</transition> | ||
|
||
<div id="main" :class="loading ? 'into-enter-from': 'into-enter-active'"> | ||
<div class="article"> | ||
<div> | ||
<h1>疲惫</h1> | ||
</div> | ||
<div class="info"> | ||
<span class="date"> | ||
<span class="icon"> | ||
<i class="fa-solid fa-calendar fa-fw"></i> | ||
</span> | ||
2024/10/11 | ||
</span> | ||
|
||
<span class="category"> | ||
<a href="/categories/2024/"> | ||
<span class="icon"> | ||
<i class="fa-solid fa-bookmark fa-fw"></i> | ||
</span> | ||
2024 | ||
</a> | ||
</span> | ||
|
||
|
||
<span class="tags"> | ||
<span class="icon"> | ||
<i class="fa-solid fa-tags fa-fw"></i> | ||
</span> | ||
|
||
|
||
<span class="tag"> | ||
|
||
<a href="/tags/%E7%94%9F%E6%B4%BB/" style="color: #ff7d73"> | ||
生活 | ||
</a> | ||
</span> | ||
|
||
</span> | ||
|
||
</div> | ||
|
||
<div class="content" v-pre> | ||
<h1 id="iDEC终于搞完力(2days-before)"><a href="#iDEC终于搞完力(2days-before)" class="headerlink" title="iDEC终于搞完力(2days before)~"></a>iDEC终于搞完力(2days before)~</h1><p><a target="_blank" rel="noopener" href="https://idec-teams.github.io/2024_NAU-CHINA-DE/index.html">NAU-CHINA-DE 2024 (idec-teams.github.io)</a></p> | ||
<p>然后昏睡了2days……</p> | ||
|
||
</div> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
</div> | ||
|
||
<footer id="footer"> | ||
<div id="footer-wrap"> | ||
<div> | ||
© | ||
2023 - 2024 BlueEve的小窝 | ||
<span id="footer-icon"> | ||
<i class="fa-solid fa-font-awesome fa-fw"></i> | ||
</span> | ||
@BlueEve | ||
</div> | ||
<div> | ||
Based on the <a target="_blank" rel="noopener" href="https://hexo.io">Hexo Engine</a> & | ||
<a target="_blank" rel="noopener" href="https://github.com/theme-particlex/hexo-theme-particlex">ParticleX Theme</a> | ||
</div> | ||
|
||
</div> | ||
</footer> | ||
|
||
</div> | ||
|
||
<transition name="fade"> | ||
<div id="preview" ref="preview" v-show="previewShow"> | ||
<img id="preview-content" ref="previewContent" /> | ||
</div> | ||
</transition> | ||
|
||
</div> | ||
<script src="/js/main.js"></script> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
</body> | ||
</html> |
Oops, something went wrong.