-
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.
update from gridea: 2024-02-17 15:51:54
- Loading branch information
0 parents
commit da6a198
Showing
14 changed files
with
1,390 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,185 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" > | ||
|
||
<title>文章归档 | Gridea</title> | ||
<meta name="description" content="温故而知新"> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> | ||
<link rel="shortcut icon" href="https://iuu6.github.io/favicon.ico?v=1708156307534"> | ||
|
||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/paper.min.css" /> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.10.0/katex.min.css"> | ||
<link rel="stylesheet" href="https://iuu6.github.io/styles/main.css"> | ||
|
||
|
||
<script src="//cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script> | ||
|
||
|
||
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" /> | ||
|
||
|
||
</head> | ||
<body> | ||
<nav class="navbar border fixed split-nav"> | ||
<div class="nav-brand"> | ||
<h3><a href="https://iuu6.github.io">Gridea</a></h3> | ||
</div> | ||
<div class="collapsible"> | ||
<input id="collapsible1" type="checkbox" name="collapsible1"> | ||
<button> | ||
<label for="collapsible1"> | ||
<div class="bar1"></div> | ||
<div class="bar2"></div> | ||
<div class="bar3"></div> | ||
</label> | ||
</button> | ||
<div class="collapsible-body"> | ||
<ul class="inline"> | ||
|
||
<li> | ||
|
||
<a href="/" class="menu"> | ||
首页 | ||
</a> | ||
|
||
</li> | ||
|
||
<li> | ||
|
||
<a href="/archives" class="menu"> | ||
归档 | ||
</a> | ||
|
||
</li> | ||
|
||
<li> | ||
|
||
<a href="/tags" class="menu"> | ||
标签 | ||
</a> | ||
|
||
</li> | ||
|
||
<li> | ||
|
||
<a href="/post/about" class="menu"> | ||
关于 | ||
</a> | ||
|
||
</li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
|
||
|
||
<div id="top" class="row site"> | ||
<div class="sm-12 md-8 col"> | ||
<div class="paper"> | ||
|
||
|
||
<h2 class="archives-title">文章归档</h2> | ||
<div class="archives-container"> | ||
|
||
<h3 class="year" data-aos-delay="500">2018</h3> | ||
|
||
|
||
<article class="post"> | ||
<a href="https://iuu6.github.io/post/hello-gridea/"> | ||
<h4 class="post-title"> | ||
Hello Gridea | ||
</h4> | ||
</a> | ||
</article> | ||
|
||
|
||
|
||
</div> | ||
</div> | ||
<div class="row flex-edges"> | ||
|
||
|
||
</div> | ||
|
||
</div> | ||
<div class="sm-12 md-4 col sidebar"> | ||
<div class="paper info-container"> | ||
<img src="https://iuu6.github.io/images/avatar.png?v=1708156307534" class="no-responsive avatar"> | ||
<div class="text-muted">温故而知新</div> | ||
<div class="social-container"> | ||
|
||
|
||
<a href="https://github.com/iuu6" target="_blank"> | ||
<i class="fab fa-github"></i> | ||
</a> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
</div> | ||
</div> | ||
<div class="paper"> | ||
<div class="sidebar-title"> | ||
最新文章 | ||
</div> | ||
<div class="row"> | ||
<ul> | ||
|
||
|
||
<li> | ||
<a href="https://iuu6.github.io/post/about/">关于</a> | ||
</li> | ||
|
||
|
||
|
||
<li> | ||
<a href="https://iuu6.github.io/post/hello-gridea/">Hello Gridea</a> | ||
</li> | ||
|
||
|
||
</ul> | ||
</div> | ||
</div> | ||
<div class="paper"> | ||
<div class="sidebar-title"> | ||
标签列表 | ||
</div> | ||
<div class="row"> | ||
|
||
<a href="https://iuu6.github.io/tag/AMiYDyD98/" class="badge warning"> | ||
Gridea | ||
</a> | ||
|
||
</div> | ||
</div> | ||
<div class="paper"> | ||
Powered by <a href="https://github.com/getgridea/gridea" target="_blank">Gridea</a> | <a class="rss" href="https://iuu6.github.io/atom.xml" target="_blank">RSS</a> | ||
</div> | ||
</div> | ||
|
||
|
||
<script src="https://unpkg.com/aos@next/dist/aos.js"></script> | ||
|
||
<script type="application/javascript"> | ||
|
||
AOS.init(); | ||
|
||
hljs.initHighlightingOnLoad() | ||
|
||
</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,26 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<feed xmlns="http://www.w3.org/2005/Atom"> | ||
<id>https://iuu6.github.io</id> | ||
<title>Gridea</title> | ||
<updated>2024-02-17T07:51:53.107Z</updated> | ||
<generator>https://github.com/jpmonette/feed</generator> | ||
<link rel="alternate" href="https://iuu6.github.io"/> | ||
<link rel="self" href="https://iuu6.github.io/atom.xml"/> | ||
<subtitle>温故而知新</subtitle> | ||
<logo>https://iuu6.github.io/images/avatar.png</logo> | ||
<icon>https://iuu6.github.io/favicon.ico</icon> | ||
<rights>All rights reserved 2024, Gridea</rights> | ||
<entry> | ||
<title type="html"><![CDATA[Hello Gridea]]></title> | ||
<id>https://iuu6.github.io/post/hello-gridea/</id> | ||
<link href="https://iuu6.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> | ||
]]></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.