136 lines
5.8 KiB
Markdown
136 lines
5.8 KiB
Markdown
[中文](#) | [English](README.md)
|
||
|
||
<a title="Hugo NexT 站点" href="https://preview.hugo-next.eu.org">
|
||
<img align="right" alt="NexT logo" width="266" src="https://lisenhui.gitee.io/imgs/hugo-next/logo/hugo-next-primary.png">
|
||
</a>
|
||
|
||
## Hugo NexT
|
||
|
||
«Hugo NexT» 是一款高质量且优雅的 [Hugo](https://gohugo.io) 主题,从原来 `Hexo` 引擎的 [`NexT`](https://github.com/next-theme/hexo-theme-next) 主题中移植过来,继续保留其经典的设计和 4 种不同页面布局模式,一切因 :heart: 重新出发愿你也能喜欢。
|
||
|
||
> 本主题的所有页面设计和配置项都与原来 `Hexo` 引擎的 `NexT` 主题保持了良好的兼容性,可以非常平滑的从 `Hexo` 迁移至 `Hugo` 引擎,欢迎大家使用并反馈。
|
||
|
||
[](https://gitter.im/hugo-next/community) [](https://github.com/gohugoio/hugo/releases/latest) [](https://github.com/hugo-next/hugo-theme-next) [](https://github.com/hugo-next/hugo-theme-next/find/main) [](https://github.com/hugo-next/hugo-theme-next/blob/main/LICENSE)
|
||
|
||
## 4 种页面模式
|
||
|
||
* :heart_decoration: 冥想 (Muse)
|
||
* :six_pointed_star: 迷雾 (Mist)
|
||
* :pisces: 双鱼座 (Pisces)
|
||
* :gemini: 双子座 (Gemini) (**默认**)
|
||
|
||
## 在线预览
|
||
|
||
| 环境 | :gemini: (**Default**) | :heart_decoration: | :six_pointed_star: | :pisces: | 状态 |
|
||
| :---: | :---: | :---: | :---: | :---: | :---: |
|
||
| 开发版本 | [双子座](https://preview.hugo-next.eu.org/) | [冥想](https://preview.hugo-next.eu.org/muse/) | [迷雾](https://preview.hugo-next.eu.org/mist/) | [双鱼座](https://preview.hugo-next.eu.org/pisces/) |  |
|
||
| 正式版本 | [双子座](https://hugo-next.eu.org/) | [冥想](https://hugo-next.eu.org/muse/) | [迷雾](https://hugo-next.eu.org/mist/) | [双鱼座](https://hugo-next.eu.org/pisces/) |  |
|
||
|
||
> - 开发版本: 所有的新功能开发都会在此第一时间发布预览
|
||
> - 正式版本: 只有测试稳定且符合要求的功能才会正式发布
|
||
|
||
## 快速开始
|
||
|
||
在使用 `Hugo NexT` 主题之前,请确认你的电脑上已经安装 `Git` 和 `Hugo Extened` 两款软件,然后通过 `submodule` 模式引用本主题,参考如下命令:
|
||
|
||
```shell
|
||
$ hugo new site hugo-next-exmaple
|
||
$ cd hugo-next-exmaple
|
||
$ git init
|
||
$ git submodule add https://github.com/hugo-next/hugo-theme-next.git themes/hugo-theme-next
|
||
$ cp -r themes/hugo-theme-next/exampleSite/* .
|
||
$ rm -rf config.toml
|
||
$ hugo server
|
||
```
|
||
打开浏览器,在地址栏输入 http://127.0.0.1:1313/ 查看主题效果,祝你好运!:tada::tada::tada:
|
||
|
||
后续更新主题只需要在你的站点目录中,执行如下命令:
|
||
|
||
```shell
|
||
$ cd hugo-next-exmaple
|
||
$ git submodule update --remote
|
||
```
|
||
|
||
> 本主题的代码同时也同步到 `Gitee` 仓库,在国内环境可切换用 [https://gitee.com/hugo-next/hugo-theme-next.git](https://gitee.com/hugo-next/hugo-theme-next.git) 镜像速度更快,也更稳定。
|
||
|
||
## 发表新文章
|
||
|
||
主题已经配置了默认的文章模板,建议使用如下 Hugo 命令快速创建新的文章:
|
||
|
||
```sh
|
||
$ hugo new posts/hello-world.md
|
||
```
|
||
|
||
关于文章头部那些参数作用的说明参考如下:
|
||
|
||
|
||
```yml
|
||
---
|
||
# 文章标题
|
||
title: "{{ replace .Name "-" " " | title }}"
|
||
# 文章内容摘要
|
||
description: "{{ .Name }}"
|
||
# 文章内容关键字
|
||
keywords: "{{replace .Name "-" ","}}"
|
||
# 发表日期
|
||
date: {{ .Date }}
|
||
# 最后修改日期
|
||
lastmod: {{ .Date }}
|
||
# 分类
|
||
categories:
|
||
-
|
||
# 标签
|
||
tags:
|
||
-
|
||
-
|
||
|
||
# 原文作者
|
||
#author:
|
||
# 原文链接
|
||
#link:
|
||
# 图片链接,用在open graph和twitter卡片上
|
||
#imgs:
|
||
# 在首页展开内容
|
||
#expand: true
|
||
# 外部链接地址,访问时直接跳转
|
||
#extlink:
|
||
# 在当前页面开启或关闭评论功能
|
||
#comment:
|
||
# enable: false
|
||
# 开启文章目录功能
|
||
#toc: false
|
||
# 绝对访问路径
|
||
#url: "{{ lower .Name }}.html"
|
||
# 开启文章置顶,数字越小越靠前
|
||
#weight: 1
|
||
---
|
||
```
|
||
|
||
## 使用反馈
|
||
|
||
- 加入 [GitHub Discussions](https://github.com/hugo-next/hugo-theme-next/discussions) 或 [Gitter](https://gitter.im/hugo-next/community) 在线讨论 :beers:
|
||
- [GitHub Issues](https://github.com/hugo-next/hugo-theme-next/issues/new?labels=Bug&template=bug-report.md) 提交错误报告 :bug:
|
||
- [GitHub Feature](https://github.com/hugo-next/hugo-theme-next/issues/new?labels=Feature+Request&template=feature-request.md) 表新功能的想法 :sparkles:
|
||
|
||
> 国内用户也可加入 QQ 群交流: 604710815
|
||
|
||
## 欢迎加入
|
||
|
||
关于本主题的开发进度和后续的发展路线图,可访问 [Hugo NexT V4 Roadmap](https://github.com/hugo-next/hugo-theme-next/issues/9) 查看详情,也欢迎大家参与一起来完善。
|
||
|
||
## 许可证
|
||
|
||
[MIT License](LICENSE)
|
||
|
||
Copyright (c) 2022, hugo-next 团队
|
||
|
||
## 致谢
|
||
|
||
开发 `Hugo NexT` 主题原本是个人的业余爱好,但没想到网友们这么的热情,感谢有你们的支持,让我们一起来见证它的成长。
|
||
|
||
以下是捐助名单列表(按时间顺序):
|
||
|
||
| 捐助时间 | 捐助者 | 捐助方式 | 捐助内容 | 留言 |
|
||
| :-------: | ------ | ------ | ---- | ---- |
|
||
| 2021.12.21 | z*y | 微信支付 | ¥18.88 | / |
|
||
| 2022.05.08 | *泉 | 微信支付 | ¥6.60 | 祝开发next顺利 |顺利 | |