-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
94 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -192,15 +192,19 @@ theme = "FixIt" | |
[markup.tableOfContents] | ||
startLevel = 2 | ||
endLevel = 6 | ||
|
||
[author] | ||
name = "MoonOld" | ||
email = "[email protected]" | ||
#link = "" | ||
avatar = "/avatar.jpg" | ||
|
||
[frontmatter] | ||
date = ["date", ":filename", "lastmod", ":git"] | ||
lastmod = [":git", "lastmod", ":fileModTime", ":default"] | ||
|
||
|
||
|
||
[menu] | ||
[[menu.main]] | ||
identifier = "posts" | ||
|
@@ -249,6 +253,7 @@ theme = "FixIt" | |
[menu.main.params] | ||
icon = "fa-solid fa-users" | ||
|
||
|
||
[outputs] | ||
home = ["HTML", "RSS", "JSON"] | ||
page = ["HTML", "MarkDown"] | ||
|
Binary file not shown.
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
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.
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,32 @@ | ||
--- | ||
title: "Test Post" | ||
subtitle: "this is a subtitle" | ||
draft: true | ||
descriprion: this is a test md | ||
keywords: abc | ||
tags: | ||
- test | ||
categories: | ||
- test | ||
--- | ||
|
||
## 发布文章流程 | ||
hugo new path/filename | ||
然后添加如下内容,注意hugo new 时会 **生成date** ,不然可以从terminal中拷贝一个最新的时间。 | ||
``` markdown | ||
--- | ||
title: "Test Post" | ||
subtitle: "this is a subtitle" | ||
draft: true | ||
type: post | ||
descriprion: this is a test md | ||
resources:(这个用来引入封面图片) | ||
- name: featured-image | ||
src: featured-image.png | ||
keywords: abc | ||
tags: | ||
- test | ||
categories: | ||
- test | ||
--- | ||
``` |
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 was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
resources/_gen/assets/scss/lib/aplayer/dark.scss_b78509179d0ce56294ff487a5da6db0a.content
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,3 @@ | ||
[data-theme='dark'] .aplayer{background:#212121}[data-theme='dark'] .aplayer.aplayer-withlist .aplayer-info{border-bottom-color:#5c5c5c}[data-theme='dark'] .aplayer.aplayer-fixed .aplayer-list{border-color:#5c5c5c}[data-theme='dark'] .aplayer .aplayer-body{background-color:#212121}[data-theme='dark'] .aplayer .aplayer-info{border-top-color:#212121}[data-theme='dark'] .aplayer .aplayer-info .aplayer-music .aplayer-title{color:#fff}[data-theme='dark'] .aplayer .aplayer-info .aplayer-music .aplayer-author{color:#fff}[data-theme='dark'] .aplayer .aplayer-info .aplayer-controller .aplayer-time{color:#eee}[data-theme='dark'] .aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon path{fill:#eee}[data-theme='dark'] .aplayer .aplayer-list{background-color:#212121}[data-theme='dark'] .aplayer .aplayer-list::-webkit-scrollbar-thumb{background-color:#999}[data-theme='dark'] .aplayer .aplayer-list::-webkit-scrollbar-thumb:hover{background-color:#bbb}[data-theme='dark'] .aplayer .aplayer-list li{color:#fff;border-top-color:#666}[data-theme='dark'] .aplayer .aplayer-list li:hover{background:#4e4e4e}[data-theme='dark'] .aplayer .aplayer-list li.aplayer-list-light{background:#6c6c6c}[data-theme='dark'] .aplayer .aplayer-list li .aplayer-list-index{color:#ddd}[data-theme='dark'] .aplayer .aplayer-list li .aplayer-list-author{color:#ddd}[data-theme='dark'] .aplayer .aplayer-lrc{text-shadow:-1px -1px 0 #666}[data-theme='dark'] .aplayer .aplayer-lrc:before{background:-moz-linear-gradient(top, #212121 0%, rgba(33,33,33,0) 100%);background:-webkit-linear-gradient(top, #212121 0%, rgba(33,33,33,0) 100%);background:linear-gradient(to bottom, #212121 0%, rgba(33,33,33,0) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#212121', endColorstr='#00212121',GradientType=0 )}[data-theme='dark'] .aplayer .aplayer-lrc:after{background:-moz-linear-gradient(top, rgba(33,33,33,0) 0%, rgba(33,33,33,0.8) 100%);background:-webkit-linear-gradient(top, rgba(33,33,33,0) 0%, rgba(33,33,33,0.8) 100%);background:linear-gradient(to bottom, rgba(33,33,33,0) 0%, rgba(33,33,33,0.8) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00212121', endColorstr='#cc212121',GradientType=0 )}[data-theme='dark'] .aplayer .aplayer-lrc p{color:#fff}[data-theme='dark'] .aplayer .aplayer-miniswitcher{background:#484848}[data-theme='dark'] .aplayer .aplayer-miniswitcher .aplayer-icon path{fill:#eee} | ||
|
||
/*# sourceMappingURL=dark.min.css.map */ |
1 change: 1 addition & 0 deletions
1
resources/_gen/assets/scss/lib/aplayer/dark.scss_b78509179d0ce56294ff487a5da6db0a.json
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 @@ | ||
{"Target":"lib/aplayer/dark.min.css","MediaType":"text/css","Data":{}} |
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.