Start a new journey for Hugo theme.

This commit is contained in:
凡梦星尘 2022-05-03 18:39:03 +08:00
commit 2a323e39f3
13 changed files with 81 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
exampleSite/*

20
LICENSE Normal file
View File

@ -0,0 +1,20 @@
The MIT License (MIT)
Copyright (c) 2022 lisenhui
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

7
README.md Normal file
View File

@ -0,0 +1,7 @@
# Hugo theme of NexT
Start a new journey for Hugo's theme of NexT.
# Our Vision
Make it easily & powerful.

19
archetypes/default.md Normal file
View File

@ -0,0 +1,19 @@
---
title: '{{ replace .Name "-" " " | title }}'
description: '不超过65个汉字的文章简要概述'
keywords: '文章关键词1,文章关键词2,文章关键词3'
isCJKLanguage: true
lastmod: '{{ .Date }}'
publishDate: '{{ .Date }}'
categories:
-
tags:
-
-
toc: false
draft: true
url: '{{ now.Unix }}.html'
---

0
layouts/404.html Normal file
View File

View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
{{- partial "header.html" . -}}
<div id="content">
{{- block "main" . }}{{- end }}
</div>
{{- partial "footer.html" . -}}
</body>
</html>

View File

View File

10
layouts/index.html Normal file
View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<header>
<title>Hugo theme of NexT</title>
</header>
<body style="text-align: center;">
<h1>Start a new journey for Hugo's theme of NexT.<h1>
<h1>Easily & powerful theme for Hugo engine.<h1>
</body>
</html>

View File

View File

View File

13
theme.toml Normal file
View File

@ -0,0 +1,13 @@
name = "Hugo Theme Next"
license = "MIT"
licenselink = "https://github.com/hugo-next/hugo-theme-next/blob/main/LICENSE"
description = "Easily & powerful theme for Hugo engine."
homepage = "https://example.com/"
tags = ["blog", "simple", "dark", "personal", "fast", "theme"]
features = ["some", "awesome", "features"]
min_version = "0.92.0"
demosite = "https://lisenhui.cn"
[author]
name = "lisenhui"
homepage = "https://lisenhui.cn"