├── templates
├── modules
│ ├── inc
│ │ ├── home-sticky.html
│ │ ├── halo-comment.html
│ │ ├── nav.html
│ │ ├── home-new.html
│ │ ├── aside-comments.html
│ │ ├── single-color.html
│ │ ├── aside-sub-page.html
│ │ ├── home-recommend-regular.html
│ │ ├── ajax
│ │ │ ├── ajax-home.html
│ │ │ ├── ajax-note-page.html
│ │ │ ├── ajax-tag-tpl.html
│ │ │ ├── ajax-cate-tpl.html
│ │ │ ├── ajax-tag.html
│ │ │ └── ajax-cate.html
│ │ └── home-recommend-swiper.html
│ ├── variables
│ │ └── configs.html
│ ├── foot.html
│ ├── layout.html
│ ├── header.html
│ ├── footer.html
│ ├── head.html
│ └── aside.html
├── assets
│ ├── images
│ │ ├── beian.png
│ │ ├── logo.png
│ │ ├── upyun.png
│ │ ├── loading.gif
│ │ ├── no-comment.png
│ │ ├── cover-author.jpg
│ │ └── random
│ │ │ ├── cover-post-1.jpg
│ │ │ └── cover-post-2.jpg
│ ├── static
│ │ ├── iconfont
│ │ │ ├── iconfont.ttf
│ │ │ ├── iconfont.woff
│ │ │ ├── iconfont.woff2
│ │ │ ├── iconfont.css
│ │ │ └── iconfont.json
│ │ └── nprogress
│ │ │ └── nprogress.css
│ ├── lens
│ │ ├── css
│ │ │ ├── images
│ │ │ │ ├── close.svg
│ │ │ │ ├── arrow.svg
│ │ │ │ ├── close-small.svg
│ │ │ │ ├── arrow-small.svg
│ │ │ │ ├── close-small-alt.svg
│ │ │ │ ├── open-small.svg
│ │ │ │ ├── open.svg
│ │ │ │ └── spinner.svg
│ │ │ └── noscript.css
│ │ └── js
│ │ │ ├── browser.min.js
│ │ │ ├── breakpoints.min.js
│ │ │ └── lazysizes.min.js
│ ├── css
│ │ ├── comments.css
│ │ └── single.css
│ └── js
│ │ ├── color-thief.min.js
│ │ ├── comments.js
│ │ └── theme.js
├── tags.html
├── categories.html
├── archives.html
├── index.html
├── tag.html
├── links.html
├── douban.html
├── category.html
├── photos.html
├── page_links.html
├── moment.html
├── page.html
├── moments.html
└── post.html
├── settings.gradle
├── annotation-setting.yaml
├── .gitignore
├── theme.yaml
├── LICENSE
├── README.md
├── gradlew.bat
├── settings.yaml
└── gradlew
/templates/modules/inc/home-sticky.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'theme-iemo'
2 |
--------------------------------------------------------------------------------
/templates/assets/images/beian.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chengzhongxue/halo-theme-iemo/HEAD/templates/assets/images/beian.png
--------------------------------------------------------------------------------
/templates/assets/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chengzhongxue/halo-theme-iemo/HEAD/templates/assets/images/logo.png
--------------------------------------------------------------------------------
/templates/assets/images/upyun.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chengzhongxue/halo-theme-iemo/HEAD/templates/assets/images/upyun.png
--------------------------------------------------------------------------------
/templates/assets/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chengzhongxue/halo-theme-iemo/HEAD/templates/assets/images/loading.gif
--------------------------------------------------------------------------------
/templates/assets/images/no-comment.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chengzhongxue/halo-theme-iemo/HEAD/templates/assets/images/no-comment.png
--------------------------------------------------------------------------------
/templates/assets/images/cover-author.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chengzhongxue/halo-theme-iemo/HEAD/templates/assets/images/cover-author.jpg
--------------------------------------------------------------------------------
/templates/assets/static/iconfont/iconfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chengzhongxue/halo-theme-iemo/HEAD/templates/assets/static/iconfont/iconfont.ttf
--------------------------------------------------------------------------------
/templates/assets/static/iconfont/iconfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chengzhongxue/halo-theme-iemo/HEAD/templates/assets/static/iconfont/iconfont.woff
--------------------------------------------------------------------------------
/templates/assets/images/random/cover-post-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chengzhongxue/halo-theme-iemo/HEAD/templates/assets/images/random/cover-post-1.jpg
--------------------------------------------------------------------------------
/templates/assets/images/random/cover-post-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chengzhongxue/halo-theme-iemo/HEAD/templates/assets/images/random/cover-post-2.jpg
--------------------------------------------------------------------------------
/templates/assets/static/iconfont/iconfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chengzhongxue/halo-theme-iemo/HEAD/templates/assets/static/iconfont/iconfont.woff2
--------------------------------------------------------------------------------
/templates/modules/variables/configs.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/annotation-setting.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: v1alpha1
2 | kind: AnnotationSetting
3 | metadata:
4 | generateName: annotation-setting-
5 | spec:
6 | targetRef:
7 | group: ""
8 | kind: MenuItem
9 | formSchema:
10 | - $formkit: "text"
11 | name: "icon"
12 | label: "图标"
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | pnpm-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | .DS_Store
12 | *.local
13 |
14 | # Editor directories and files
15 | .vscode/*
16 | !.vscode/extensions.json
17 | .idea
18 | *.suo
19 | *.ntvs*
20 | *.njsproj
21 | *.sln
22 | *.sw?
23 |
24 | .gradle
25 | build
26 |
--------------------------------------------------------------------------------
/templates/assets/lens/css/images/close.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/templates/assets/lens/css/images/arrow.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/templates/assets/lens/css/images/close-small.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/templates/assets/lens/css/images/arrow-small.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/templates/assets/lens/css/images/close-small-alt.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/templates/modules/foot.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
10 |
3 |
4 |
5 | iEmo是一个简约感设计Halo主题
6 | 7 | 8 |  9 |  10 | 11 | 12 | ### 预览:[困困鱼](https://demo.kunkunyu.com?preview-theme=theme-iemo) 13 | 14 | ### 文档:[iEmo 使用文档](https://docs.kunkunyu.com/docs/iemo) 15 | 16 | 17 | ### 插件支持 18 | iEmo 主题支持以下 Halo 插件: 19 | 20 | - [X] 友情链接(/links):https://halo.run/store/apps/app-hfbQg 21 | - [X] 豆瓣(/douban):https://www.halo.run/store/apps/app-srBOL 22 | - [X] 瞬间(/moments):https://halo.run/store/apps/app-SnwWD 23 | 24 | 为了获得更好的体验,你还可以安装以下插件(如果需要): 25 | - highlight.js 代码高亮:https://halo.run/store/apps/app-sqpgf 26 | 27 | ### 使用说明 28 | > 1、部分功能是使用插件进行支持 29 | - [X] 文章目录 30 | - [X] [代码高亮/语言/复制](https://github.com/halo-sigs/plugin-highlightjs)(插件) 31 | - [x] [文章搜索](https://github.com/halo-sigs/plugin-search-widget)(插件) 32 | - [X] [评论系统](https://github.com/halo-sigs/plugin-comment-widget)(插件) 33 | - [x] [友情链接](https://github.com/halo-sigs/plugin-links)(插件) 34 | - [x] [豆瓣](https://github.com/chengzhongxue/plugin-douban)(插件) 35 | - [x] [瞬间](https://github.com/halo-sigs/plugin-moments)(插件) 36 | - [x] 其他功能 37 | 38 | ### TODO 39 | - [ ] 细节优化 40 | - [ ] 图库(/photos):https://halo.run/store/apps/app-BmQJW 41 | 42 | ### 🏭 贡献 43 | 44 | > 如果你想帮助完善 `iEmo` 主题,请: 45 | 46 | - 点 `star` 47 | - 提 `issue` 48 | - 修 `bugs` 49 | - 推 `pr` 50 | 51 |
59 |
60 | * QQ群
61 |
62 |
63 | ### 赞助
64 | 如果 iEmo 对你有帮助,欢迎[赞助我](https://afdian.net/a/moony_la),感谢以下赞助者对 iEmo 项目的支持:
65 |
--------------------------------------------------------------------------------
/templates/modules/inc/aside-comments.html:
--------------------------------------------------------------------------------
1 | 暂无评论
31 |
25 |
26 |
27 |
参与讨论
6 |(Participate in the discussion)
7 |参与讨论
10 |