├── .gitignore ├── .vscode └── extensions.json ├── 404.php ├── README.md ├── assets ├── css │ ├── admin.css │ ├── fancybox.css │ ├── plyr.css │ ├── style.css │ └── viewer.min.css ├── fonts │ └── HarmonyOS-Sans.woff2 ├── js │ ├── DPlayer.min.js │ ├── Sortable.min.js │ ├── admin.js │ ├── alpine.3.13.3.min.js │ ├── anime.min.js │ ├── axios.min.js │ ├── edit.js │ ├── fancybox.umd.js │ ├── hls.min.js │ ├── icefox.js │ ├── intersection-observer.min.js │ ├── jquery.min.js │ ├── jquery.ui.touch.punch.min.js │ ├── jqueryui.min.js │ ├── lazyload.min.js │ ├── plyr.js │ ├── scrollload.min.js │ ├── viewer.common.js │ └── viewer.js └── svgs │ ├── btn-close.svg │ ├── btn-edit-dark.svg │ ├── btn-edit.svg │ ├── btn-left.svg │ ├── btn-moon.svg │ ├── btn-more.svg │ ├── btn-pause.dark.svg │ ├── btn-pause.svg │ ├── btn-play.dark.svg │ ├── btn-play.svg │ ├── btn-rocket.svg │ ├── btn-sun.svg │ ├── fixed-music-close.svg │ ├── fixed-music-pause.svg │ ├── fixed-music-play.svg │ ├── header.friend.dark.svg │ ├── header.friend.svg │ ├── link-light.svg │ ├── link.svg │ ├── moon.svg │ ├── music-pause-light.svg │ ├── music-pause.svg │ ├── music-play-light.svg │ ├── music-play.svg │ ├── plus.svg │ ├── position-link.svg │ ├── position.svg │ ├── post.aside.like.light.svg │ ├── post.comment.face.dark.svg │ ├── post.comment.face.svg │ ├── post.fun.btn.comment.svg │ ├── post.fun.btn.like.svg │ ├── post.fun.btn.liked.svg │ ├── post.fun.ico.light.svg │ ├── post.top.back.dark.svg │ ├── post.top.back.svg │ ├── refresh.svg │ ├── smile.svg │ ├── sun.svg │ └── x.svg ├── components ├── footer.php ├── header.php ├── modal.php ├── option-header.php ├── post-item-comment.php ├── post-item-images.php ├── post-item-line-time.php ├── post-item-music.php ├── post-item-position.php ├── post-item-video.php ├── post-item.php ├── post-list.php ├── single-footer.php └── single-top.php ├── core ├── api.php ├── article.php ├── comment.php └── core.php ├── edit.php ├── functions.php ├── index.php ├── main └── index.ts ├── package-lock.json ├── package.json ├── page.php ├── post.php ├── screenshot.png ├── template-archive.php ├── uno.config.ts ├── uno.css └── vite.config.ts /.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 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] 3 | } 4 | -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 页面不存在 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
一款Typecho仿微信朋友圈生活类主题,采用响应式设计
4 |