aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md23
1 files changed, 22 insertions, 1 deletions
diff --git a/README.md b/README.md
index d3d0a66..e4b786f 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,9 @@
一个简约的Hugo主题。专注于写作。
-
+[](./images/homepage.png)
+[](./images/post.png)
+[](./images/single.png.png)
## Features
@@ -57,3 +59,22 @@ style = "emacs" #github、emacs、solarized-light 等
[outputFormats.RSS]
baseName = "atom"
```
+
+## Comments
+
+- 支持Waline评论系统
+
+在`layouts/_default/single.html`中修改serverURL
+
+```html
+<script type="module">
+ import { init } from 'https://unpkg.com/@waline/client@v3/dist/waline.js';
+ init({
+ el: '#waline',
+ serverURL: ''
+ ^^^^^^^
+ 替换为你的serverURL
+ });
+</script>
+```
+