Skip to content

Commit 56ca3f2

Browse files
committed
update from gridea: 2025-03-06 12:31:26
0 parents  commit 56ca3f2

File tree

12 files changed

+1952
-0
lines changed

12 files changed

+1952
-0
lines changed

404.html

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<title>Page Not Found</title>
8+
<style>
9+
* {
10+
margin: 0;
11+
padding: 0;
12+
}
13+
body {
14+
display: flex;
15+
flex-direction: column;
16+
height: 100vh;
17+
text-align: center;
18+
}
19+
.box {
20+
flex: 1;
21+
display: flex;
22+
justify-content: center;
23+
flex-direction: column;
24+
}
25+
.number {
26+
font-size: 80px;
27+
color: #666;
28+
font-weight: bold;
29+
}
30+
.text {
31+
font-size: 14px;
32+
margin: 24px;
33+
color: #333;
34+
}
35+
.btn-container {
36+
display: flex;
37+
justify-content: center;
38+
}
39+
.btn {
40+
padding: 8px 24px;
41+
display: inline-block;
42+
text-decoration: none;
43+
background: #fff;
44+
border: 2px solid #efefef;
45+
color: #333;
46+
margin: 24px;
47+
border-radius: 20px;
48+
cursor: pointer;
49+
display: flex;
50+
align-items: center;
51+
}
52+
.footer {
53+
padding: 16px;
54+
border-top: 1px solid #efefef;
55+
color: #777;
56+
font-weight: lighter;
57+
}
58+
.footer a {
59+
text-decoration: none;
60+
font-weight: bold;
61+
color: #000;
62+
}
63+
</style>
64+
</head>
65+
<body>
66+
<div class="box">
67+
<div class="number">4 0 4</div>
68+
<div class="text">
69+
Page not found
70+
</div>
71+
<div class="btn-container">
72+
<a class="btn" id="back">
73+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16" style="margin-right: 8px;">
74+
<path fill="none" d="M0 0h24v24H0z"/>
75+
<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"/>
76+
</svg>
77+
Back
78+
</a>
79+
</div>
80+
</div>
81+
<footer class="footer">
82+
Powered by <a href="https://gridea.dev" target="_blank">Gridea</a>
83+
</footer>
84+
<script>
85+
var back = document.getElementById('back')
86+
back.onclick = function() { console.log('run...'); history.back() }
87+
</script>
88+
</body>
89+
</html>

archives/index.html

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
<html>
2+
<head>
3+
<meta charset="utf-8" />
4+
<meta name="viewport" content="width=device-width, initial-scale=1" />
5+
<title>Gridea</title>
6+
<link rel="shortcut icon" href="https://raye.ink/favicon.ico?v=1741235467525">
7+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
8+
<link rel="stylesheet" href="https://raye.ink/styles/main.css">
9+
<link rel="alternate" type="application/atom+xml" title="Gridea - Atom Feed" href="https://raye.ink/atom.xml">
10+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Droid+Serif:400,700">
11+
12+
13+
14+
<meta name="description" content="温故而知新" />
15+
</head>
16+
<body>
17+
<div class="main">
18+
<div class="main-content">
19+
<div class="site-header">
20+
<a href="https://raye.ink">
21+
<img class="avatar" src="https://raye.ink/images/avatar.png?v=1741235467525" alt="">
22+
</a>
23+
<h1 class="site-title">
24+
Gridea
25+
</h1>
26+
<p class="site-description">
27+
温故而知新
28+
</p>
29+
<div class="menu-container">
30+
31+
32+
<a href="/" class="menu">
33+
首页
34+
</a>
35+
36+
37+
38+
<a href="/archives" class="menu">
39+
归档
40+
</a>
41+
42+
43+
44+
<a href="/tags" class="menu">
45+
标签
46+
</a>
47+
48+
49+
50+
<a href="/post/about" class="menu">
51+
关于
52+
</a>
53+
54+
55+
</div>
56+
<div class="social-container">
57+
58+
59+
60+
61+
62+
63+
64+
65+
66+
67+
68+
</div>
69+
</div>
70+
71+
72+
73+
74+
<div class="archives-container">
75+
76+
<h2 class="year">2018</h2>
77+
78+
79+
<a href="https://raye.ink/post/hello-gridea/" class="post">
80+
<h2 class="post-title">
81+
Hello Gridea
82+
</h2>
83+
<div class="time">2018-12-12</div>
84+
</a>
85+
86+
87+
88+
</div>
89+
90+
91+
<div class="pagination-container">
92+
93+
94+
</div>
95+
96+
97+
<div class="site-footer">
98+
Powered by <a href="https://github.com/getgridea/gridea" target="_blank">Gridea</a>
99+
<a class="rss" href="https://raye.ink/atom.xml" target="_blank">
100+
<i class="ri-rss-line"></i> RSS
101+
</a>
102+
</div>
103+
104+
</div>
105+
</div>
106+
</body>
107+
</html>

atom.xml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<feed xmlns="http://www.w3.org/2005/Atom">
3+
<id>https://raye.ink</id>
4+
<title>Gridea</title>
5+
<updated>2025-03-06T04:31:25.832Z</updated>
6+
<generator>https://github.com/jpmonette/feed</generator>
7+
<link rel="alternate" href="https://raye.ink"/>
8+
<link rel="self" href="https://raye.ink/atom.xml"/>
9+
<subtitle>温故而知新</subtitle>
10+
<logo>https://raye.ink/images/avatar.png</logo>
11+
<icon>https://raye.ink/favicon.ico</icon>
12+
<rights>All rights reserved 2025, Gridea</rights>
13+
<entry>
14+
<title type="html"><![CDATA[Hello Gridea]]></title>
15+
<id>https://raye.ink/post/hello-gridea/</id>
16+
<link href="https://raye.ink/post/hello-gridea/">
17+
</link>
18+
<updated>2018-12-11T16:00:00.000Z</updated>
19+
<summary type="html"><![CDATA[<p>👏 欢迎使用 <strong>Gridea</strong> !<br>
20+
✍️ <strong>Gridea</strong> 一个静态博客写作客户端。你可以用它来记录你的生活、心情、知识、笔记、创意... ...</p>
21+
]]></summary>
22+
<content type="html"><![CDATA[<p>👏 欢迎使用 <strong>Gridea</strong> !<br>
23+
✍️ <strong>Gridea</strong> 一个静态博客写作客户端。你可以用它来记录你的生活、心情、知识、笔记、创意... ...</p>
24+
<!-- more -->
25+
<p><a href="https://github.com/getgridea/gridea">Github</a><br>
26+
<a href="https://gridea.dev/">Gridea 主页</a><br>
27+
<a href="https://fehey.com/">示例网站</a></p>
28+
<h2 id="特性">特性👇</h2>
29+
<p>📝 你可以使用最酷的 <strong>Markdown</strong> 语法,进行快速创作</p>
30+
<p>🌉 你可以给文章配上精美的封面图和在文章任意位置插入图片</p>
31+
<p>🏷️ 你可以对文章进行标签分组</p>
32+
<p>📋 你可以自定义菜单,甚至可以创建外部链接菜单</p>
33+
<p>💻 你可以在 <strong>Windows</strong>,<strong>MacOS</strong> 或 <strong>Linux</strong> 设备上使用此客户端</p>
34+
<p>🌎 你可以使用 <strong>𝖦𝗂𝗍𝗁𝗎𝖻 𝖯𝖺𝗀𝖾𝗌</strong> 或 <strong>Coding Pages</strong> 向世界展示,未来将支持更多平台</p>
35+
<p>💬 你可以进行简单的配置,接入 <a href="https://github.com/gitalk/gitalk">Gitalk</a> 或 <a href="https://github.com/SukkaW/DisqusJS">DisqusJS</a> 评论系统</p>
36+
<p>🇬🇧 你可以使用<strong>中文简体</strong>或<strong>英语</strong></p>
37+
<p>🌁 你可以任意使用应用内默认主题或任意第三方主题,强大的主题自定义能力</p>
38+
<p>🖥 你可以自定义源文件夹,利用 OneDrive、百度网盘、iCloud、Dropbox 等进行多设备同步</p>
39+
<p>🌱 当然 <strong>Gridea</strong> 还很年轻,有很多不足,但请相信,它会不停向前 🏃</p>
40+
<p>未来,它一定会成为你离不开的伙伴</p>
41+
<p>尽情发挥你的才华吧!</p>
42+
<p>😘 Enjoy~</p>
43+
]]></content>
44+
</entry>
45+
</feed>

images/avatar.png

19.9 KB
Loading

index.html

+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
<html>
2+
<head>
3+
<meta charset="utf-8" />
4+
<meta name="viewport" content="width=device-width, initial-scale=1" />
5+
<title>Gridea</title>
6+
<link rel="shortcut icon" href="https://raye.ink/favicon.ico?v=1741235467525">
7+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
8+
<link rel="stylesheet" href="https://raye.ink/styles/main.css">
9+
<link rel="alternate" type="application/atom+xml" title="Gridea - Atom Feed" href="https://raye.ink/atom.xml">
10+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Droid+Serif:400,700">
11+
12+
13+
14+
<meta name="description" content="温故而知新" />
15+
</head>
16+
<body>
17+
<div class="main">
18+
<div class="main-content">
19+
<div class="site-header">
20+
<a href="https://raye.ink">
21+
<img class="avatar" src="https://raye.ink/images/avatar.png?v=1741235467525" alt="">
22+
</a>
23+
<h1 class="site-title">
24+
Gridea
25+
</h1>
26+
<p class="site-description">
27+
温故而知新
28+
</p>
29+
<div class="menu-container">
30+
31+
32+
<a href="/" class="menu">
33+
首页
34+
</a>
35+
36+
37+
38+
<a href="/archives" class="menu">
39+
归档
40+
</a>
41+
42+
43+
44+
<a href="/tags" class="menu">
45+
标签
46+
</a>
47+
48+
49+
50+
<a href="/post/about" class="menu">
51+
关于
52+
</a>
53+
54+
55+
</div>
56+
<div class="social-container">
57+
58+
59+
60+
61+
62+
63+
64+
65+
66+
67+
68+
</div>
69+
</div>
70+
71+
72+
<div class="post-container">
73+
74+
<article class="post">
75+
<a href="https://raye.ink/post/hello-gridea/">
76+
<h2 class="post-title">Hello Gridea</h2>
77+
</a>
78+
<div class="post-info">
79+
<span>
80+
2018-12-12
81+
</span>
82+
<span>
83+
2 min read
84+
</span>
85+
86+
<a href="https://raye.ink/tag/AQoI1qjjHv/" class="post-tag">
87+
# Gridea
88+
</a>
89+
90+
</div>
91+
92+
<a href="https://raye.ink/post/hello-gridea/" class="post-feature-image" style="background-image: url('https://raye.ink/post-images/hello-gridea.png')">
93+
</a>
94+
95+
<div class="post-abstract">
96+
<p>👏 欢迎使用 <strong>Gridea</strong><br>
97+
✍️ <strong>Gridea</strong> 一个静态博客写作客户端。你可以用它来记录你的生活、心情、知识、笔记、创意... ...</p>
98+
99+
</div>
100+
</article>
101+
102+
</div>
103+
104+
105+
<div class="pagination-container">
106+
107+
108+
</div>
109+
110+
111+
<div class="site-footer">
112+
Powered by <a href="https://github.com/getgridea/gridea" target="_blank">Gridea</a>
113+
<a class="rss" href="https://raye.ink/atom.xml" target="_blank">
114+
<i class="ri-rss-line"></i> RSS
115+
</a>
116+
</div>
117+
118+
</div>
119+
</div>
120+
</body>
121+
</html>

post-images/about.JPG

98.6 KB
Loading

post-images/hello-gridea.png

38.4 KB
Loading

0 commit comments

Comments
 (0)