-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update from gridea: 2024-05-15 15:20:39
- Loading branch information
0 parents
commit 6cf5568
Showing
19 changed files
with
1,946 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>Page Not Found</title> | ||
<style> | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
body { | ||
display: flex; | ||
flex-direction: column; | ||
height: 100vh; | ||
text-align: center; | ||
} | ||
.box { | ||
flex: 1; | ||
display: flex; | ||
justify-content: center; | ||
flex-direction: column; | ||
} | ||
.number { | ||
font-size: 80px; | ||
color: #666; | ||
font-weight: bold; | ||
} | ||
.text { | ||
font-size: 14px; | ||
margin: 24px; | ||
color: #333; | ||
} | ||
.btn-container { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
.btn { | ||
padding: 8px 24px; | ||
display: inline-block; | ||
text-decoration: none; | ||
background: #fff; | ||
border: 2px solid #efefef; | ||
color: #333; | ||
margin: 24px; | ||
border-radius: 20px; | ||
cursor: pointer; | ||
display: flex; | ||
align-items: center; | ||
} | ||
.footer { | ||
padding: 16px; | ||
border-top: 1px solid #efefef; | ||
color: #777; | ||
font-weight: lighter; | ||
} | ||
.footer a { | ||
text-decoration: none; | ||
font-weight: bold; | ||
color: #000; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="box"> | ||
<div class="number">4 0 4</div> | ||
<div class="text"> | ||
Page not found | ||
</div> | ||
<div class="btn-container"> | ||
<a class="btn" id="back"> | ||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16" style="margin-right: 8px;"> | ||
<path fill="none" d="M0 0h24v24H0z"/> | ||
<path d="M5.828 7l2.536 2.536L6.95 10.95 2 6l4.95-4.95 1.414 1.414L5.828 5H13a8 8 0 1 1 0 16H4v-2h9a6 6 0 1 0 0-12H5.828z"/> | ||
</svg> | ||
Back | ||
</a> | ||
</div> | ||
</div> | ||
<footer class="footer"> | ||
Powered by <a href="https://gridea.dev" target="_blank">Gridea</a> | ||
</footer> | ||
<script> | ||
var back = document.getElementById('back') | ||
back.onclick = function() { console.log('run...'); history.back() } | ||
</script> | ||
</body> | ||
</html> |
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 @@ | ||
toc.lieme.cn |
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,157 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" > | ||
|
||
<title>文章归档 | 坚果大叔</title> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> | ||
|
||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous"> | ||
<link rel="shortcut icon" href="https://jiaopianjun.github.io/favicon.ico?v=1715755865806"> | ||
<link rel="stylesheet" href="https://jiaopianjun.github.io/styles/main.css"> | ||
|
||
|
||
|
||
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" /> | ||
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> | ||
|
||
|
||
|
||
<meta name="description" content="温故而知新"> | ||
</head> | ||
<body> | ||
<div id="app" class="main"> | ||
|
||
<div class="sidebar" :class="{ 'full-height': menuVisible }"> | ||
<div class="top-container" data-aos="fade-right"> | ||
<div class="top-header-container"> | ||
<a class="site-title-container" href="https://jiaopianjun.github.io"> | ||
<img src="https://jiaopianjun.github.io/images/avatar.png?v=1715755865806" class="site-logo"> | ||
<h1 class="site-title">坚果大叔</h1> | ||
</a> | ||
<div class="menu-btn" @click="menuVisible = !menuVisible"> | ||
<div class="line"></div> | ||
</div> | ||
</div> | ||
<div> | ||
|
||
|
||
<a href="/" class="site-nav"> | ||
首页 | ||
</a> | ||
|
||
|
||
|
||
<a href="/archives" class="site-nav"> | ||
归档 | ||
</a> | ||
|
||
|
||
|
||
<a href="/tags" class="site-nav"> | ||
标签 | ||
</a> | ||
|
||
|
||
|
||
<a href="/post/about" class="site-nav"> | ||
关于 | ||
</a> | ||
|
||
|
||
</div> | ||
</div> | ||
<div class="bottom-container" data-aos="flip-up" data-aos-offset="0"> | ||
<div class="social-container"> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
</div> | ||
<div class="site-description"> | ||
温故而知新 | ||
</div> | ||
<div class="site-footer"> | ||
Powered by <a href="https://github.com/getgridea/gridea" target="_blank">Gridea</a> | <a class="rss" href="https://jiaopianjun.github.io/atom.xml" target="_blank">RSS</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
<div class="main-container"> | ||
<div class="content-container" data-aos="fade-up"> | ||
|
||
|
||
<h2 class="archives-title">文章归档</h2> | ||
<div class="archives-container"> | ||
|
||
<h2 class="year" data-aos="fade-in" data-aos-delay="500">2024</h2> | ||
|
||
|
||
<article class="post"> | ||
<a href="https://jiaopianjun.github.io/post/ni-hao/"> | ||
<h2 class="post-title"> | ||
我的博客 | ||
</h2> | ||
</a> | ||
</article> | ||
|
||
|
||
|
||
|
||
|
||
<h2 class="year" data-aos="fade-in" data-aos-delay="500">2018</h2> | ||
|
||
|
||
|
||
|
||
<article class="post"> | ||
<a href="https://jiaopianjun.github.io/post/hello-gridea/"> | ||
<h2 class="post-title"> | ||
Hello Gridea | ||
</h2> | ||
</a> | ||
</article> | ||
|
||
|
||
|
||
</div> | ||
|
||
<div class="pagination-container"> | ||
|
||
|
||
</div> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="https://unpkg.com/aos@next/dist/aos.js"></script> | ||
<script type="application/javascript"> | ||
|
||
AOS.init(); | ||
|
||
var app = new Vue({ | ||
el: '#app', | ||
data: { | ||
menuVisible: false, | ||
}, | ||
}) | ||
|
||
</script> | ||
|
||
|
||
|
||
|
||
|
||
|
||
</body> | ||
</html> |
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,54 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<feed xmlns="http://www.w3.org/2005/Atom"> | ||
<id>https://jiaopianjun.github.io</id> | ||
<title>坚果大叔</title> | ||
<updated>2024-05-15T07:20:38.217Z</updated> | ||
<generator>https://github.com/jpmonette/feed</generator> | ||
<link rel="alternate" href="https://jiaopianjun.github.io"/> | ||
<link rel="self" href="https://jiaopianjun.github.io/atom.xml"/> | ||
<subtitle>温故而知新</subtitle> | ||
<logo>https://jiaopianjun.github.io/images/avatar.png</logo> | ||
<icon>https://jiaopianjun.github.io/favicon.ico</icon> | ||
<rights>All rights reserved 2024, 坚果大叔</rights> | ||
<entry> | ||
<title type="html"><![CDATA[我的博客]]></title> | ||
<id>https://jiaopianjun.github.io/post/ni-hao/</id> | ||
<link href="https://jiaopianjun.github.io/post/ni-hao/"> | ||
</link> | ||
<updated>2024-05-15T06:34:08.000Z</updated> | ||
<content type="html"><![CDATA[<p>https://cuixinxin.cn😆</p> | ||
]]></content> | ||
</entry> | ||
<entry> | ||
<title type="html"><![CDATA[Hello Gridea]]></title> | ||
<id>https://jiaopianjun.github.io/post/hello-gridea/</id> | ||
<link href="https://jiaopianjun.github.io/post/hello-gridea/"> | ||
</link> | ||
<updated>2018-12-11T16:00:00.000Z</updated> | ||
<summary type="html"><![CDATA[<p>👏 欢迎使用 <strong>Gridea</strong> !<br> | ||
✍️ <strong>Gridea</strong> 一个静态博客写作客户端。你可以用它来记录你的生活、心情、知识、笔记、创意... ...</p> | ||
]]></summary> | ||
<content type="html"><![CDATA[<p>👏 欢迎使用 <strong>Gridea</strong> !<br> | ||
✍️ <strong>Gridea</strong> 一个静态博客写作客户端。你可以用它来记录你的生活、心情、知识、笔记、创意... ...</p> | ||
<!-- more --> | ||
<p><a href="https://github.com/getgridea/gridea">Github</a><br> | ||
<a href="https://gridea.dev/">Gridea 主页</a><br> | ||
<a href="http://fehey.com/">示例网站</a></p> | ||
<h2 id="特性">特性👇</h2> | ||
<p>📝 你可以使用最酷的 <strong>Markdown</strong> 语法,进行快速创作</p> | ||
<p>🌉 你可以给文章配上精美的封面图和在文章任意位置插入图片</p> | ||
<p>🏷️ 你可以对文章进行标签分组</p> | ||
<p>📋 你可以自定义菜单,甚至可以创建外部链接菜单</p> | ||
<p>💻 你可以在 <strong>Windows</strong>,<strong>MacOS</strong> 或 <strong>Linux</strong> 设备上使用此客户端</p> | ||
<p>🌎 你可以使用 <strong>𝖦𝗂𝗍𝗁𝗎𝖻 𝖯𝖺𝗀𝖾𝗌</strong> 或 <strong>Coding Pages</strong> 向世界展示,未来将支持更多平台</p> | ||
<p>💬 你可以进行简单的配置,接入 <a href="https://github.com/gitalk/gitalk">Gitalk</a> 或 <a href="https://github.com/SukkaW/DisqusJS">DisqusJS</a> 评论系统</p> | ||
<p>🇬🇧 你可以使用<strong>中文简体</strong>或<strong>英语</strong></p> | ||
<p>🌁 你可以任意使用应用内默认主题或任意第三方主题,强大的主题自定义能力</p> | ||
<p>🖥 你可以自定义源文件夹,利用 OneDrive、百度网盘、iCloud、Dropbox 等进行多设备同步</p> | ||
<p>🌱 当然 <strong>Gridea</strong> 还很年轻,有很多不足,但请相信,它会不停向前 🏃</p> | ||
<p>未来,它一定会成为你离不开的伙伴</p> | ||
<p>尽情发挥你的才华吧!</p> | ||
<p>😘 Enjoy~</p> | ||
]]></content> | ||
</entry> | ||
</feed> |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.