├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml ├── 404.php ├── LICENSE ├── OwO.json ├── README.md ├── api └── api.php ├── archive.php ├── archive_header.php ├── articles.php ├── category-list.php ├── comments.php ├── config └── custom_config.php ├── css ├── GrayMac.css ├── JetBrainsMono-Medium.woff2 ├── custom.css ├── snackbar.min.css ├── style.css └── themedash.css ├── edit ├── edit.css └── extend.js ├── footer.php ├── functions.php ├── header.php ├── header_com.php ├── img ├── 1d.png ├── 404.jpg ├── 404.png ├── DefualtThumbnail.jpg ├── comment.png ├── default.cur ├── friend_404.gif ├── icon-search.png ├── icon-search@2x.png ├── pointer.cur ├── qq.png └── snow.gif ├── index.css ├── index.php ├── js ├── clipboard.min.js ├── comjs.js ├── custom.js ├── custom.main.js ├── letterAvatar.js ├── local-search.js ├── main.js ├── prism.js ├── smooth.min.js ├── snackbar.min.js ├── themecustom.js ├── tw_cn.js ├── typed.min.js ├── utils.js └── wehao.js ├── link.php ├── online.dat ├── page.php ├── page_header.php ├── post.php ├── post_header.php ├── post_sidebar.php ├── public ├── defend.php ├── live2d.php ├── nav.php ├── noqq.php └── rightside.php ├── screenshot.png ├── sidebar.php └── tags.php /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug 反馈 2 | description: 反馈bug以改善主题(如果你的主题不是从release页下载的,请前往release下载后,测试是否存在同样bug再反馈) 3 | title: '[Bug]: ' 4 | 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | 重要:請按照模板提交 10 | Please follow the template to create a new issue 11 | 12 | - type: dropdown 13 | id: downlad 14 | attributes: 15 | label: 是否从release页下的主题? | Is the theme download from Release Page? 16 | options: 17 | - 是 (Yes) 18 | - 不是 (No) 19 | validations: 20 | required: true 21 | 22 | - type: input 23 | id: butterfly-ver 24 | attributes: 25 | label: 使用的 Butterfly 版本? | What version of Butterfly are you use? 26 | description: 在后台控制台外观中查看当前版本 27 | validations: 28 | required: true 29 | 30 | - type: dropdown 31 | id: modify 32 | attributes: 33 | label: 是否修改过主题文件? | Has the theme files been modified? 34 | options: 35 | - 不是 (No) 36 | - 是 (Yes) 37 | validations: 38 | required: true 39 | 40 | - type: dropdown 41 | id: browser 42 | attributes: 43 | label: 使用的浏览器? | What browse are you using? 44 | options: 45 | - Chrome 46 | - Edge 47 | - Safari 48 | - firefox 49 | - Other 50 | validations: 51 | required: true 52 | 53 | - type: dropdown 54 | id: environment 55 | attributes: 56 | label: 博客的运行环境? | What the running environment of the blog? 57 | options: 58 | - linux|php7.2+|typecho1.2|mysql5.6+|nginx 59 | - linux|php8.0+|typecho1.2|mysql5.6+|nginx 60 | - linux|php7.2+|typecho1.2|sqlite|nginx 61 | - linux|php8.0+|typecho1.2|sqlite|nginx 62 | - Other 63 | validations: 64 | required: true 65 | 66 | - type: textarea 67 | id: description 68 | attributes: 69 | label: 问题描述 | Describe the bug 70 | description: 请描述你的问题 | A clear and concise description of what the bug is. 71 | placeholder: 如果以上某些选项没有对应的值,请提供相应信息。这里你可以详细说明你的问题,请尽量提供截图 72 | value: 73 | validations: 74 | required: true 75 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: 主题文档 4 | url: https://blog.haoi.net/archives/typecho-butterfly.html 5 | about: 主题文档 6 | 7 | - name: 主题下载 8 | url: https://github.com/wehaox/Typecho-Butterfly/releases 9 | about: 主题下载 10 | 11 | - name: 静态文件 12 | url: https://github.com/wehaox/Typecho-Butterfly/releases/download/1.7.7/static-23.11.zip 13 | about: 最新的本地静态文件下载 14 | 15 | - name: 提交普通问题 16 | url: https://github.com/wehaox/Typecho-Butterfly/issues/new 17 | about: 非bug问题可以在这里提交 18 | -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 2 | page404(); ?> 3 | need('header_com.php'); ?> 4 |
5 |