-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "links" page and customize favicon
Add "links" page and add link for Linux Do; Customize favicon; Update blog's basic info;
- Loading branch information
Showing
14 changed files
with
274 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# language | ||
zh-CN: | ||
# items | ||
menu: | ||
# the translation you perfer | ||
links: 友链 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ | ||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} |
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,84 @@ | ||
--- | ||
title: 友情链接 | ||
date: 2024-12-09 21:37:32 | ||
type: "links" | ||
--- | ||
|
||
<style> | ||
.links-container { | ||
display: grid; | ||
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); | ||
gap: 20px; | ||
margin-top: 40px; | ||
} | ||
|
||
.link-item { | ||
background-color: #fff; | ||
border-radius: 8px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
transition: transform 0.3s ease, box-shadow 0.3s ease; | ||
} | ||
|
||
.link-item:hover { | ||
transform: translateY(-5px); | ||
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.link-card { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 20px; | ||
text-decoration: none; | ||
color: #333; | ||
border-radius: 8px; | ||
} | ||
|
||
.link-card:hover { | ||
background-color: #f5f5f5; | ||
} | ||
|
||
.link-icon img { | ||
width: 80px; | ||
height: 80px; | ||
margin-bottom: 15px; | ||
border-radius: 50%; | ||
object-fit: cover; | ||
} | ||
|
||
.link-info h3 { | ||
font-size: 18px; | ||
font-weight: bold; | ||
margin-bottom: 5px; | ||
} | ||
|
||
.link-info p { | ||
font-size: 14px; | ||
color: #666; | ||
text-align: center; | ||
line-height: 1.5; | ||
} | ||
|
||
/* 增加响应式设计 */ | ||
@media (max-width: 768px) { | ||
.links-container { | ||
grid-template-columns: 1fr; | ||
} | ||
} | ||
</style> | ||
|
||
<div class="links-container"> | ||
<div class="link-item"> | ||
<a href="https://linux.do/?source=moralok_com" target="_blank" class="link-card"> | ||
<div class="link-icon"> | ||
<img src="/images/linux_do.png" alt="LINUX DO" /> | ||
</div> | ||
<div class="link-info"> | ||
<h3>LINUX DO</h3> | ||
<p>新的理想型社区</p> | ||
</div> | ||
</a> | ||
</div> | ||
</div> | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
title: tags | ||
title: 标签 | ||
date: 2023-06-19 19:28:34 | ||
type: "tags" | ||
--- |