diff --git a/config.toml b/config.toml
index 2cac9a0..7f52978 100644
--- a/config.toml
+++ b/config.toml
@@ -1,14 +1,33 @@
-baseURL = "http://example.org/"
-languageCode = "en-us"
-title = "My New Hugo Site"
+baseURL = "https://wrong.wang/"
+languageCode = "zh-CN"
+title = "wrong.wang"
theme = "hugo-w2ng"
pygmentsStyle="github"
hasCJKLanguage = true
enableEmoji = true
+googleAnalytics = "UA-120056178-1"
+copyright = "This work is licensed under a CC BY-NC 4.0(署名-非商业性使用 4.0 国际) License."
+
+[author]
+ name = "王锐"
+
+disableKinds = ["taxonomyTerm"]
+
[params]
- Footer = "© 2019 王不对 - **[CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/)** - **[RSS](/index.xml)**"
+ description = "王不对的个人网站"
+ Footer = "© 2019 王不对 - **[CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/)** - **[RSS](/blog/index.xml)**"
HomeDesc = "**[博客](/blog/) 和 [飞行手册](/flight-rules/)中还有很多文章✨**"
AuthorName = "王不对"
+ Favicon = "/favicon.jpg"
+
+[params.CDN]
+#enable = false
+enable = true
+# Host must end with `/`
+Host = "https://lowentropy.jinxiapu.cn/img/"
+
+[params.comments.isso]
+Host = "https://c.jinxiapu.cn/"
[[menu.main]]
name = "博客"
diff --git a/themes/hugo-w2ng/layouts/_default/_markup/render-image.html b/themes/hugo-w2ng/layouts/_default/_markup/render-image.html
new file mode 100644
index 0000000..849cbc9
--- /dev/null
+++ b/themes/hugo-w2ng/layouts/_default/_markup/render-image.html
@@ -0,0 +1,13 @@
+{{- $img_destination := .Destination }}
+{{ if .Page.Site.Params.CDN.enable }}
+ {{ $img_destination = (print .Page.Site.Params.CDN.HOST .Page.File.Dir "/" .Destination) }}
+{{ end }}
+
+{{ if .Title -}}
+
+
+{{ end -}}
\ No newline at end of file
diff --git a/themes/hugo-w2ng/layouts/_default/baseof.html b/themes/hugo-w2ng/layouts/_default/baseof.html
index dfd9888..218b33b 100644
--- a/themes/hugo-w2ng/layouts/_default/baseof.html
+++ b/themes/hugo-w2ng/layouts/_default/baseof.html
@@ -1,5 +1,5 @@
-
+
{{- partial "head.html" . -}}