{"id":13431991,"url":"https://github.com/Mitscherlich/hexo-theme-amber","last_synced_at":"2025-03-16T23:30:23.703Z","repository":{"id":34028988,"uuid":"150199130","full_name":"Mitscherlich/hexo-theme-amber","owner":"Mitscherlich","description":":tada: A bootstrap blog theme for hexo [SEEKING MAINTAINER]","archived":false,"fork":false,"pushed_at":"2024-10-08T16:28:35.000Z","size":3930,"stargazers_count":57,"open_issues_count":0,"forks_count":12,"subscribers_count":3,"default_branch":"0.x","last_synced_at":"2025-02-26T09:41:34.416Z","etag":null,"topics":["bootstrap","hexo","hexo-theme","typescript","vue"],"latest_commit_sha":null,"homepage":"","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mitscherlich.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-09-25T02:55:53.000Z","updated_at":"2025-01-30T05:53:22.000Z","dependencies_parsed_at":"2022-08-17T21:25:31.365Z","dependency_job_id":"5126b236-c637-4455-bc5d-bc5130400d70","html_url":"https://github.com/Mitscherlich/hexo-theme-amber","commit_stats":{"total_commits":24,"total_committers":2,"mean_commits":12.0,"dds":"0.20833333333333337","last_synced_commit":"4ab6d22b7ebcc43f30f96f348404b6b9b184f4bd"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mitscherlich%2Fhexo-theme-amber","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mitscherlich%2Fhexo-theme-amber/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mitscherlich%2Fhexo-theme-amber/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mitscherlich%2Fhexo-theme-amber/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mitscherlich","download_url":"https://codeload.github.com/Mitscherlich/hexo-theme-amber/tar.gz/refs/heads/0.x","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243949727,"owners_count":20373649,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bootstrap","hexo","hexo-theme","typescript","vue"],"created_at":"2024-07-31T02:01:07.612Z","updated_at":"2025-03-16T23:30:23.692Z","avatar_url":"https://github.com/Mitscherlich.png","language":"Vue","funding_links":[],"categories":["Content"],"sub_categories":[],"readme":"\u003e **🔊:** MAINTAINER NEEDED\u003cbr /\u003e\n\u003e Currently, I'm not focusing on this project anymore. Since it a little bit out of date and Vue.js 3 is coming soon next year, if you're also interested in this theme, please [contact me](mailto:mitscherlich36@gmail.com) and I'll transfer this repo to you.\n\n# hexo-theme-amber\n\n[![Build Status][ci-badge]][ci-url]\n[![juejin][juejin-img]][juejin-url]\n[![MIT License][license-badge]](LICENSE)\n\n[ci-badge]: https://travis-ci.org/Mitscherlich/hexo-theme-amber.svg?branch=develop\n[ci-url]: https://travis-ci.org/Mitscherlich/hexo-theme-amber\n[juejin-img]: https://badge.juejin.im/entry/5c1b515ff265da61193bcc21/likes.svg?style=flat\n[juejin-url]: https://juejin.im/post/5c1b4b69f265da611c26ef7c\n[license-badge]: https://img.shields.io/badge/license-MIT-blue.svg\n\nHexo theme based on Vue.js and Bootstrap for [mitscherlich.me](https://mitscherlich.me).\n\n![Preview](https://raw.githubusercontent.com/Mitscherlich/hexo-theme-amber/develop/docs/assets/Preview.png)\n\nLanguage: :us:\u003ca title=\"Chinese\" href=\"README.zh-CN.md\"\u003e:cn:\u003c/a\u003e\n\n\u003e **⚠️ Note:** This theme cannot be use as a individual Vue.js spa. You need to setup a Hexo blog.\n\n## Install\n\nvia npm/yarn/pnpm:\n\n```bash\n$ npm i --save hexo-theme-amber\n# or yarn\n$ yarn add hexo-theme-amber\n# or pnpm\n$ pnpm add hexo-theme-amber\n```\n\nThen modify you `_config.yml`:\n\n```yml\n# ...\n## Theme\ntheme: amber  # this enable your theme config\n# ...\n```\n\nEnjoy your writing!\n\n```bash\n$ hexo clean \u0026\u0026 hexo serve\n```\n\n## Develop\n\nThis theme provide prebuild static assets on default branch. You may need to checkout [`develop`](https://github.com/Mitscherlich/hexo-theme-amber/tree/develop) branch if you want to custom the theme. There is no difference with Vue development you are familiar with:\n\n```bash\n$ git clone https://github.com/Mitscherlich/hexo-theme-amber.git -b develop themes/amber-dev\n$ cd themes/amber-dev \u0026\u0026 npm install # Also, yarn will be ok\n```\n\nJust follow the installation, but notice that you have to run both `hexo serve` and `yarn serve` at the same time. Otherwise you will not get the posts data.\n\n```bash\n$ cd /path/to/blog/theme/amber-dev\n$ yarn serve\n```\n\nThen open another terminal:\n\n```bash\n$ cd /path/to/blog\n$ hexo clean \u0026\u0026 hexo serve --port 4000\n```\n\n**Note:** hexo server must running on port `4000`. You may need to modifiy the `vue.config.js` under theme root if using other specific port.\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMitscherlich%2Fhexo-theme-amber","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FMitscherlich%2Fhexo-theme-amber","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMitscherlich%2Fhexo-theme-amber/lists"}