diff --git a/README.md b/README.md index cee4a54..3e82ffa 100644 --- a/README.md +++ b/README.md @@ -56,9 +56,6 @@ Follow [exampleSite/config.toml](https://github.com/Mivinci/hugo-theme-minima/bl | draft | bool | True if the post isn't already to production | | toc | bool | True if the post needs a ToC | - - ### Feedback Feedbacks are welcome [here](https://github.com/Mivinci/hugo-theme-minima/issues). - diff --git a/docs/README_CN.md b/docs/README_CN.md new file mode 100644 index 0000000..2b88e9c --- /dev/null +++ b/docs/README_CN.md @@ -0,0 +1,69 @@ +# Minima + +Minima 是个简洁但功能完整的 Hugo 主题,是 [Hexo Minima](https://github.com/adisaktijrs/hexo-theme-minima) 的 Hugo 版本,但对其界面做了些调整,也添加了些功能.。示例网页:[h.xjj.pub](https://h.xjj.pub/),或直接查看作者的博客网站:[xjj.pub](https://xjj.pub)。 + +![screenshot](../images/tn.png) + +## 功能 + +- [x] 暗黑模式,点击首页的 Logo 能在黑白两种模式下切换 +- [x] VSCode 风格的代码高亮 +- [x] KaTeX 公式 +- [x] Mermaid 图表 +- [x] Google 分析 +- [x] Disqus、Utterances 评论插件(即将支持 Waline) +- [x] 文章目录 +- [x] 分类、标签、专栏 + +## 使用 + +在使用前,确保您的设备已安装了 Hugo 最新的扩展版本(hugo-extended) + +然后确保你的博客根目录(假设为 `blog/`)处在 git 工作区,若没有,则运行下面命令 + +```bash +cd blog +git init +``` + +### 安装 + +在博客根目录使用 git submodule 将 minima 下载到博客的 theme 目录下 + +```bash +git submodule add --depth 1 https://github.com/mivinci/hugo-theme-minima.git themes/minima +``` + +或直接使用 git 将 minima 克隆到 theme 目录下 + +```bash +git clone https://github.com/mivinci/hugo-theme-minima.git themes/minima +``` + +总之,要将 minima 放到博客根目录的 theme 目录下。 + +### 主题配置 + +根据示例配置 [exampleSite/config.toml](https://github.com/Mivinci/hugo-theme-minima/blob/main/exampleSite/config.toml) 编辑你自己的配置文件 `博客根目录/config.toml` + +### 文章配置 + +为缩短博客网页的加载和渲染时间,minima 不支持如公式、图表、评论插件的全局配置,需要在每篇文章中设置是否启用相关插件,以下是 minima 目前支持的文章配置。 + +| 字段 | 类型 | 解释 | +| ----------- | ------ | --------------------------------- | +| title | string | 文章标题 | +| description | string | 文章简介,会显示在标题和正文之间 | +| date | string | 文章创建日期 | +| categories | array | 文章分类 | +| series | array | 文章专栏 | +| tags | array | 文章标签 | +| math | bool | true:为该文章开启公式渲染 | +| mermaid | bool | true:为该文章开启图表渲染 | +| comment | bool | true:为该文章开启评论插件,具体是哪个插件在博客配置文件中设置 | +| draft | bool | true:该篇文章为草稿,不会被打包 | +| toc | bool | true:为该篇文章开启目录显示 | + +### 反馈 + +欢迎在 [issues](https://github.com/Mivinci/hugo-theme-minima/issues) 下留言,或将问题详细描述发送到我的邮箱:mivinci@qq.com diff --git a/exampleSite/content/instruction.md b/exampleSite/content/instruction.md index 9fbd63a..95d331b 100644 --- a/exampleSite/content/instruction.md +++ b/exampleSite/content/instruction.md @@ -7,8 +7,6 @@ math: true comment: true --- - - ## Features - [x] Light/dark mode @@ -48,7 +46,7 @@ Follow [exampleSite/config.toml](https://github.com/Mivinci/hugo-theme-minima/bl ### Supported Front Matters | Field | Type | Explanation | -| :---------- | :----- | :----------------------------------------------------- | +|:----------- |:------ |:------------------------------------------------------ | | title | string | Title of the post, will be rendered in a `h1` tag | | description | string | Description of the post, will be rendered in a `p` tag | | date | string | Datetime that the post is written | @@ -61,8 +59,6 @@ Follow [exampleSite/config.toml](https://github.com/Mivinci/hugo-theme-minima/bl | draft | bool | True if the post isn't already to production | | toc | bool | True if the post needs a ToC | - - ### Feedback Feedbacks are welcome [here](https://github.com/Mivinci/hugo-theme-minima/issues). diff --git a/exampleSite/content/markdown-syntax.md b/exampleSite/content/markdown-syntax.md index d05fd49..01ac69c 100644 --- a/exampleSite/content/markdown-syntax.md +++ b/exampleSite/content/markdown-syntax.md @@ -8,6 +8,7 @@ categories: ["Markdown"] --- This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. + ## Headings @@ -15,10 +16,15 @@ This article offers a sample of basic Markdown syntax that can be used in Hugo c The following HTML `