Skip to content

Commit

Permalink
reinit commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
UlinoyaPed committed Feb 3, 2023
1 parent abd9770 commit 70389b6
Show file tree
Hide file tree
Showing 53 changed files with 15,365 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "themes/FixIt"]
path = themes/FixIt
url = https://github.com/hugo-fixit/FixIt.git
Empty file added .hugo_build.lock
Empty file.
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Hugo|FixIt + Netlify 博客

[![Netlify Status](https://api.netlify.com/api/v1/badges/46648482-644c-4c80-bafb-872057e51b6b/deploy-status)](https://totapo.netlify.app)![GitHub repo size](https://img.shields.io/github/repo-size/UlinoyaPed/mywebsite)![GitHub Repo stars](https://img.shields.io/github/stars/UlinoyaPed/mywebsite)

## **网站快照(实时更新)**$\downarrow$

![网页快照](https://s0.wp.com/mshots/v1/https://totapo.netlify.app?w=&h=)

你可以`Fork`此仓库并搭建自己的`Blog`

<p style="color: red">注意:在Fork或Clone后请修改config.toml,关闭评论或修改为您自己的服务商。</p>

```diff
[params.page.comment]
- enable = true
+ enable = false
# Giscus 评论系统设置
[params.page.comment.giscus]
- enable = true
- repo = "UlinoyaPed/mywebsite"
- repoId = "R_kgDOItLsdQ"
- category = "Announcements"
- categoryId = "DIC_kwDOItLsdc4CTqKM"
- mapping = "pathname"
+ enable = false
+ repo = "{{YOUR_REPO}}"
+ repoId = "{{YOUR_REPO_ID}}"
+ category = "{{YOUR_CATEGORY}}"
+ categoryId = "{{YOUR_CATEGORY_ID}}"
+ mapping = ""
reactionsEnabled = "1"
emitMetadata = "0"
inputPosition = "top" # ["top", "bottom"]
lightTheme = "light"
darkTheme = "dark"
lazyLoad = true
```
23 changes: 23 additions & 0 deletions archetypes/posts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
title: "{{ replace .Name "-" " " | title }}"
subtitle: ""
date: {{ .Date }}
lastmod: {{ .Date }}
author: "UlinoyaPed"
description: ""
categories:
- 分类1
- 分类2
tags:
- 标签1
- 标签2
draft: false
ruby: true # 上标注释扩展语法
fraction: true # 分数扩展语法
fontawesome: true # Font Awesome 扩展语法
twemoji: false # 如果设为 true, 这篇文章会使用 twemoji
# password: # 加密页面内容的密码
# message: "" # 加密提示信息
---

#
4 changes: 4 additions & 0 deletions assets/js/custom.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// document.body.innerHTML = document.body.innerHTML.replace(
// /https:\/\/github.com\/UlinoyaPed\/PictureBed/g,
// "https://ghproxy.com/https://github.com/UlinoyaPed/PictureBed"
// );
10 changes: 10 additions & 0 deletions assets/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": [
"*"
]
}
}
}

0 comments on commit 70389b6

Please sign in to comment.