initial commit

This commit is contained in:
geekifan
2025-05-11 11:31:58 +08:00
commit 56fb9963de
34 changed files with 1959 additions and 0 deletions

View File

@ -0,0 +1,42 @@
---
title: Customize the Favicon
date: 2019-08-11 00:34:00 +0800
description: >-
Get started with Chirpy basics in this comprehensive overview.
You will learn how to install, configure, and use your first Chirpy-based website, as well as deploy it to a web server.
categories:
- Blogging
- Tutorial
tags:
- favicon
---
The [favicons](https://www.favicon-generator.org/about/) of [**Chirpy**](https://github.com/cotes2020/jekyll-theme-chirpy/) are placed in the directory {{< filepath src="assets/img/favicons/" >}}. You may want to replace them with your own. The following sections will guide you to create and replace the default favicons.
## Generate the favicon
Prepare a square image (PNG, JPG, or SVG) with a size of 512x512 or more, and then go to the online tool [**Real Favicon Generator**](https://realfavicongenerator.net/) and click the button <kbd>Select your Favicon image</kbd> to upload your image file.
In the next step, the webpage will show all usage scenarios. You can keep the default options, scroll to the bottom of the page, and click the button <kbd>Generate your Favicons and HTML code</kbd> to generate the favicon.
## Download & Replace
Download the generated package, unzip and delete the following two from the extracted files:
- {{< filepath src="browserconfig.xml" >}}
- {{< filepath src="site.webmanifest" >}}
And then copy the remaining image files ({{< filepath src=".PNG" >}} and {{< filepath src=".ICO" >}}) to cover the original files in the directory {{< filepath src="assets/img/favicons/" >}} of your Hugo site. If your Hugo site doesn't have this directory yet, just create one.
The following table will help you understand the changes to the favicon files:
| File(s) | From Online Tool | From Chirpy |
|---------------------|:---------------------------------:|:-----------:|
| `*.PNG` | ✓ | ✗ |
| `*.ICO` | ✓ | ✗ |
<!-- markdownlint-disable-next-line -->
> ✓ means keep, ✗ means delete.
{ .prompt-info }
The next time you build the site, the favicon will be replaced with a customized edition.

View File

@ -0,0 +1,42 @@
---
title: 自定义网站图标
date: 2019-08-11 00:34:00 +0800
description: >-
通过这个全面概述开始学习 Chirpy 的基础知识。
您将学习如何安装、配置和使用您的第一个基于 Chirpy 的网站,以及如何将其部署到网络服务器。
categories:
- 博客
- 教程
tags:
- 网站图标
---
[**Chirpy**](https://github.com/cotes2020/jekyll-theme-chirpy/) 的[网站图标](https://www.favicon-generator.org/about/)放置在 {{< filepath src="assets/img/favicons/" >}} 目录中。您可能想用自己的图标替换它们。以下部分将指导您创建和替换默认网站图标。
## 生成网站图标
准备一张尺寸为 512x512 或更大的正方形图像PNG、JPG 或 SVG然后前往在线工具 [**Real Favicon Generator**](https://realfavicongenerator.net/),点击 <kbd>Select your Favicon image</kbd> 按钮上传您的图像文件。
在下一步中,网页将显示所有使用场景。您可以保留默认选项,滚动到页面底部,点击 <kbd>Generate your Favicons and HTML code</kbd> 按钮生成网站图标。
## 下载与替换
下载生成的包,解压并从提取的文件中删除以下两个文件:
- {{< filepath src="browserconfig.xml" >}}
- {{< filepath src="site.webmanifest" >}}
然后将剩余的图像文件({{< filepath src=".PNG" >}} 和 {{< filepath src=".ICO" >}})复制到您的 Hugo 站点的 {{< filepath src="assets/img/favicons/" >}} 目录中,覆盖原始文件。如果您的 Hugo 站点还没有这个目录,只需创建一个。
下表将帮助您理解网站图标文件的变化:
| 文件 | 来自在线工具 | 来自 Chirpy |
|---------------------|:---------------------------------:|:-----------:|
| `*.PNG` | ✓ | ✗ |
| `*.ICO` | ✓ | ✗ |
<!-- markdownlint-disable-next-line -->
> ✓ 表示保留,✗ 表示删除。
{ .prompt-info }
下次构建站点时,网站图标将被自定义版本替换。