Skip to content

Commit 8f96a03

Browse files
committed
feature: 更换博客主题
1 parent 52d7eff commit 8f96a03

File tree

253 files changed

+55742
-1138
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

253 files changed

+55742
-1138
lines changed

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
# 煎鱼的迷之博客
22

3-
写写代码,喝喝茶,搞搞 Go,一起吧,这是我的项目地址:https://github.com/EDDYCJY/blog
3+
写写代码,喝喝茶,搞搞 Go,一起吧,这是我的项目地址:https://github.com/eddycjy/blog
44

55
## 在线阅读
66

7-
- https://book.eddycjy.com/golang/
8-
- https://eddycjy.gitbook.io/golang/
7+
- https://eddycjy.com/
98

109
## 我的公众号
1110

12-
为了留言功能,最近换了新的公众号,可能需要大家重新关注一下,谢谢。
13-
1411
![image](https://image.eddycjy.com/7b703c95f19bad89cf81b15c83927e46.jpg)
1512

1613
##
@@ -21,4 +18,4 @@
2118

2219
## License
2320

24-
所有文章采用[知识共享署名-非商业性使用-相同方式共享 3.0 中国大陆许可协议](https://creativecommons.org/licenses/by-nc-sa/3.0/cn/)进行许可
21+
所有文章采用[知识共享署名-非商业性使用-相同方式共享 3.0 中国大陆许可协议](https://creativecommons.org/licenses/by-nc-sa/3.0/cn/)进行许可

SUMMARY.md

Lines changed: 0 additions & 78 deletions
This file was deleted.

archetypes/default.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
comments: false
6+
images:
7+
---
8+

archetypes/posts.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
toc: false
6+
images:
7+
tags:
8+
- untagged
9+
---
10+

book.json

Lines changed: 0 additions & 28 deletions
This file was deleted.

config.toml

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
baseURL = "https://eddycjy.com"
2+
languageCode = "zh-hans"
3+
defaultContentLanguage = "en"
4+
title = "煎鱼"
5+
theme = "hermit"
6+
# enableGitInfo = true
7+
pygmentsCodefences = true
8+
pygmentsUseClasses = true
9+
# hasCJKLanguage = true # If Chinese/Japanese/Korean is your main content language, enable this to make wordCount works right.
10+
rssLimit = 10 # Maximum number of items in the RSS feed.
11+
copyright = "This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License." # This message is only used by the RSS template.
12+
enableEmoji = true # Shorthand emojis in content files - https://gohugo.io/functions/emojify/
13+
# googleAnalytics = "UA-123-45"
14+
# disqusShortname = "yourdiscussshortname"
15+
16+
[author]
17+
name = "煎鱼"
18+
19+
[blackfriday]
20+
# hrefTargetBlank = true
21+
# noreferrerLinks = true
22+
# nofollowLinks = true
23+
24+
[taxonomies]
25+
tag = "tags"
26+
# Categories are disabled by default.
27+
28+
[params]
29+
since = "2018"
30+
toc = true
31+
32+
dateform = "Jan 2, 2006"
33+
dateformShort = "Jan 2"
34+
dateformNum = "2006-01-02"
35+
dateformNumTime = "2006-01-02 15:04 -0700"
36+
37+
# Metadata mostly used in document's head
38+
description = "go,golang,源码分析,系列教程"
39+
# images = [""]
40+
themeColor = "#494f5c"
41+
42+
homeSubtitle = "Metrics, Tracing, Logging"
43+
footerCopyright = ' &#183; <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
44+
# bgImg = "" # Homepage background-image URL
45+
46+
# Prefix of link to the git commit detail page. GitInfo must be enabled.
47+
gitUrl = "https://github.com/eddycjy/blog/commit/"
48+
49+
# Toggling this option needs to rebuild SCSS, requires Hugo extended version
50+
justifyContent = false # Set "text-align: justify" to `.content`.
51+
52+
relatedPosts = false # Add a related content section to all single posts page
53+
54+
code_copy_button = true # Turn on/off the code-copy-button for code-fields
55+
56+
# Add custom css
57+
# customCSS = ["css/foo.css", "css/bar.css"]
58+
59+
# Social Icons
60+
# Check https://github.com/Track3/hermit#social-icons for more info.
61+
62+
[[params.social]]
63+
name = "github"
64+
url = "https://github.com/eddycjy"
65+
66+
[menu]
67+
68+
[[menu.main]]
69+
name = "Posts"
70+
url = "posts/"
71+
weight = 10
72+
73+
[[menu.main]]
74+
name = "Tags"
75+
url = "tags/"
76+
weight = 10
77+
78+
[[menu.main]]
79+
name = "About"
80+
url = "about/"
81+
weight = 20

content/about.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: "About"
3+
date: "2020-03-15"
4+
---
5+
6+
你好,我是煎鱼,有任何建议或问题欢迎随时找我交流。
7+
8+
联系方式:
9+
10+
- Github:https://github.com/eddycjy/blog
11+
- 公众号:我要煎鱼说
12+
13+
14+

crawler/douban-top250.md renamed to content/posts/go/crawler/2018-03-21-douban-top250.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
# 9.1 爬取豆瓣电影 Top250
1+
---
2+
3+
title: "爬取豆瓣电影 Top250"
4+
date: 2018-03-21 12:30:00
5+
author: "煎鱼"
6+
toc: true
7+
tags:
8+
- go
9+
- 数据分析
10+
---
211

312
爬虫是标配了,看数据那一刻很有趣。第一个就从最最最简单最基础的爬虫开始写起吧!
413

crawler/cars.md renamed to content/posts/go/crawler/2018-04-01-cars.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
# 9.2 爬取汽车之家 二手车产品库
1+
---
2+
3+
title: "爬取汽车之家 二手车产品库"
4+
date: 2018-04-01 12:30:00
5+
author: "煎鱼"
6+
toc: true
7+
tags:
8+
- go
9+
- 数据分析
10+
---
211

312
项目地址:https://github.com/go-crawler/car-prices
413

@@ -118,3 +127,5 @@ func GetCars(doc *goquery.Document) (cars []QcCar) {
118127
### 爬虫项目地址
119128

120129
- https://github.com/go-crawler/car-prices
130+
131+

crawler/go2018.md renamed to content/posts/go/crawler/2018-04-28-go2018.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1-
# 9.3 了解一下 Golang 的市场行情
1+
---
2+
3+
title: "了解一下Golang的市场行情"
4+
date: 2018-04-28 12:30:00
5+
author: "煎鱼"
6+
toc: true
7+
tags:
8+
- go
9+
- 数据分析
10+
---
211

312
项目地址:https://github.com/go-crawler/lagou_jobs
413

5-
如果对你有所帮助,欢迎 Star,给文章来波赞,这样可以让更多的人看见 :)
14+
如果对你有所帮助,欢迎 Star,给文章来波赞,这样可以让更多的人看见 :)
615

716
## 目标
817

0 commit comments

Comments
 (0)