diff --git a/archetypes/default.md b/archetypes/default.md index c6f3fce..1c6421f 100644 --- a/archetypes/default.md +++ b/archetypes/default.md @@ -1,5 +1,9 @@ -+++ -title = '{{ replace .File.ContentBaseName "-" " " | title }}' -date = {{ .Date }} -draft = true -+++ +--- +title: {{ replace .TranslationBaseName "-" " " | title }} +subtitle: +date: {{ .Date }} +slug: {{ substr .File.UniqueID 0 7 }} +description: +keywords: +draft: true +--- diff --git a/archetypes/friends.md b/archetypes/friends.md new file mode 100644 index 0000000..93c4698 --- /dev/null +++ b/archetypes/friends.md @@ -0,0 +1,37 @@ +--- +title: {{ replace .TranslationBaseName "-" " " | title }} +subtitle: +layout: friends +date: {{ .Date }} +description: "{{ .Site.Params.author.name }}'s friends" +keywords: + - 'Hugo FixIt' + - 'friends template' + - 友情链接 +comment: false +--- + + + +--- + + + +## Base info + +```yaml +- nickname: Lruihao + avatar: https://lruihao.cn/images/avatar.jpg + url: https://lruihao.cn + description: Lruihao's Note +``` + +## Friendly Reminder + +{{< admonition info "Notice" true >}} + +1. If you want to exchange link, please leave a comment in the above format. (personal non-commercial blogs / websites only) +2. :(fa-solid fa-exclamation-triangle): Website failure, stop maintenance and improper content may be unlinked! +3. Those websites that do not respect other people's labor achievements, reprint without source, or malicious acts, please do not come to exchange. + +{{< /admonition >}} diff --git a/archetypes/post-bundle/index.md b/archetypes/post-bundle/index.md new file mode 100644 index 0000000..0b9ca8e --- /dev/null +++ b/archetypes/post-bundle/index.md @@ -0,0 +1,45 @@ +--- +title: {{ replace .TranslationBaseName "-" " " | title }} +subtitle: +date: {{ .Date }} +slug: {{ substr .File.UniqueID 0 7 }} +draft: true +author: + name: + link: + email: + avatar: +description: +keywords: +license: +comment: false +weight: 0 +tags: + - draft +categories: + - draft +collections: + - draft +hiddenFromHomePage: false +hiddenFromSearch: false +hiddenFromRss: false +hiddenFromRelated: false +summary: +resources: + - name: featured-image + src: featured-image.jpg + - name: featured-image-preview + src: featured-image-preview.jpg +toc: true +math: false +lightgallery: false +password: +message: +repost: + enable: true + url: + +# See details front matter: https://fixit.lruihao.cn/documentation/content-management/introduction/#front-matter +--- + + \ No newline at end of file diff --git a/archetypes/posts.md b/archetypes/posts.md new file mode 100644 index 0000000..c1f55bd --- /dev/null +++ b/archetypes/posts.md @@ -0,0 +1,45 @@ +--- +title: {{ replace .TranslationBaseName "-" " " | title }} +subtitle: +date: {{ .Date }} +slug: {{ substr .File.UniqueID 0 7 }} +draft: true +author: + name: + link: + email: + avatar: +description: +keywords: +license: +comment: false +weight: 0 +tags: + - draft +categories: + - draft +collections: + - draft +hiddenFromHomePage: false +hiddenFromSearch: false +hiddenFromRss: false +hiddenFromRelated: false +summary: +resources: + - name: featured-image + src: featured-image.jpg + - name: featured-image-preview + src: featured-image-preview.jpg +toc: true +math: false +lightgallery: false +password: +message: +repost: + enable: true + url: + +# See details front matter: https://fixit.lruihao.cn/documentation/content-management/introduction/#front-matter +--- + + diff --git a/content/en/posts/csci-1100/hw-1/index.md b/content/en/posts/csci-1100/hw-1/index.md index abdc10f..7f3a4e3 100644 --- a/content/en/posts/csci-1100/hw-1/index.md +++ b/content/en/posts/csci-1100/hw-1/index.md @@ -23,6 +23,8 @@ tags: categories: - CSCI - Programming +collections: + - CSCI 1100 hiddenFromHomePage: false hiddenFromSearch: false hiddenFromRss: false diff --git a/content/en/posts/csci-1100/hw-2/index.md b/content/en/posts/csci-1100/hw-2/index.md index b59da9c..ed090d0 100644 --- a/content/en/posts/csci-1100/hw-2/index.md +++ b/content/en/posts/csci-1100/hw-2/index.md @@ -23,6 +23,8 @@ tags: categories: - CSCI - Programming +collections: + - CSCI 1100 hiddenFromHomePage: false hiddenFromSearch: false hiddenFromRss: false diff --git a/content/zh-cn/posts/csci-1100/hw-1/index.md b/content/zh-cn/posts/csci-1100/hw-1/index.md index 2ccd636..00207fa 100644 --- a/content/zh-cn/posts/csci-1100/hw-1/index.md +++ b/content/zh-cn/posts/csci-1100/hw-1/index.md @@ -23,6 +23,8 @@ tags: categories: - CSCI - 编程语言 +collections: + - CSCI 1100 hiddenFromHomePage: false hiddenFromSearch: false hiddenFromRss: false diff --git a/content/zh-cn/posts/csci-1100/hw-2/index.md b/content/zh-cn/posts/csci-1100/hw-2/index.md index d51d608..45af088 100644 --- a/content/zh-cn/posts/csci-1100/hw-2/index.md +++ b/content/zh-cn/posts/csci-1100/hw-2/index.md @@ -23,6 +23,8 @@ tags: categories: - CSCI - 编程语言 +collections: + - CSCI 1100 hiddenFromHomePage: false hiddenFromSearch: false hiddenFromRss: false diff --git a/content/zh-cn/posts/the-code-of-quintessence/part-1-5/index.md b/content/zh-cn/posts/the-code-of-quintessence/part-1-5/index.md index 0c49371..9d0b26b 100644 --- a/content/zh-cn/posts/the-code-of-quintessence/part-1-5/index.md +++ b/content/zh-cn/posts/the-code-of-quintessence/part-1-5/index.md @@ -20,6 +20,8 @@ tags: categories: - Stable Diffusion - 资源分享 +collections: + - 元素法典 hiddenFromHomePage: false hiddenFromSearch: false hiddenFromRss: false diff --git a/content/zh-cn/posts/the-code-of-quintessence/part-1/index.md b/content/zh-cn/posts/the-code-of-quintessence/part-1/index.md index 852b256..23d34f6 100644 --- a/content/zh-cn/posts/the-code-of-quintessence/part-1/index.md +++ b/content/zh-cn/posts/the-code-of-quintessence/part-1/index.md @@ -20,6 +20,8 @@ tags: categories: - Stable Diffusion - 资源分享 +collections: + - 元素法典 hiddenFromHomePage: false hiddenFromSearch: false hiddenFromRss: false diff --git a/content/zh-cn/posts/the-code-of-quintessence/part-2/index.md b/content/zh-cn/posts/the-code-of-quintessence/part-2/index.md index 9e9934c..e31888f 100644 --- a/content/zh-cn/posts/the-code-of-quintessence/part-2/index.md +++ b/content/zh-cn/posts/the-code-of-quintessence/part-2/index.md @@ -20,6 +20,8 @@ tags: categories: - Stable Diffusion - 资源分享 +collections: + - 元素法典 hiddenFromHomePage: false hiddenFromSearch: false hiddenFromRss: false