{"id":13432115,"url":"https://github.com/microacup/hexo-theme-microb","last_synced_at":"2025-03-16T23:30:41.830Z","repository":{"id":67504185,"uuid":"114103285","full_name":"microacup/hexo-theme-microb","owner":"microacup","description":"A very simple Hexo theme. 一个超级简单的Hexo主题。","archived":false,"fork":false,"pushed_at":"2019-10-22T02:58:31.000Z","size":166,"stargazers_count":35,"open_issues_count":2,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-05-20T09:23:22.874Z","etag":null,"topics":["hexo","hexo-theme","minimalist","purecss","theme"],"latest_commit_sha":null,"homepage":"","language":"CSS","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/microacup.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2017-12-13T09:51:03.000Z","updated_at":"2024-01-08T19:35:45.000Z","dependencies_parsed_at":"2023-02-21T20:01:21.703Z","dependency_job_id":null,"html_url":"https://github.com/microacup/hexo-theme-microb","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microacup%2Fhexo-theme-microb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microacup%2Fhexo-theme-microb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microacup%2Fhexo-theme-microb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microacup%2Fhexo-theme-microb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/microacup","download_url":"https://codeload.github.com/microacup/hexo-theme-microb/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243949793,"owners_count":20373651,"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":["hexo","hexo-theme","minimalist","purecss","theme"],"created_at":"2024-07-31T02:01:08.712Z","updated_at":"2025-03-16T23:30:41.825Z","avatar_url":"https://github.com/microacup.png","language":"CSS","funding_links":[],"categories":["Content"],"sub_categories":[],"readme":"# hexo-theme-microb\r\n\r\nA very simple Hexo theme. \r\n\r\n一个超级简单的Hexo主题。\r\n\r\n[Demo](https://blog.meiqiu.me)\r\n\r\n- 速度至上\r\n- 简洁\r\n- 基于PureCSS\r\n\r\n### 基本法：\r\n\r\n- 保证最少的css/js/图片引用，如有必要可内联资源，加快页面展示速度。\r\n- 按需引入，拒绝全局引入。\r\n- 保持简洁。\r\n\r\n### 隐藏特性\r\n\r\n- 点击图标显示目录\r\n- 生成摘要（使用`\u003c!-- more --\u003e`分割)\r\n- 移动端友好\r\n\r\n### 快速使用：\r\n\r\n- 配置菜单\r\n\r\n  在主题`_config.yml` 中配置menu选项：\r\n\r\n  ```\r\n  # main menu navigation\r\n  menu:\r\n    home: /\r\n    tags: /tags\r\n    search: /search\r\n    about: /about\r\n    # archives: /archives\r\n  ```\r\n\r\n\r\n- 创建页面\r\n\r\n  hexo中创建页面，需要手动在source文件夹下创建对应的目录和index.md文件。例如about页面：\r\n\r\n  /source/about/index.md\r\n\r\n  ```markdown\r\n  ---\r\n  title: 关于俺\r\n  date: 2016-05-24 13:45:13\r\n  type: \"about\"\r\n  comments: false\r\n  ---\r\n  ```\r\n\r\n  配置说明：\r\n\r\n  \u003e type: 页面类型，参考hexo文档\r\n  \u003e\r\n  \u003e title: about页面的title标签，如果没有默认为About\r\n\r\n\r\n- 标签\r\n\r\n  搜索使用了插件hexo-generator-tag，必须先npm install\r\n\r\n  在文章头部声明标签：\r\n\r\n  ```markdown\r\n  ---\r\n  title: ES6/ES7参考手册\r\n  date: 2016-12-23 16:08:28\r\n  category:\r\n  - 前端\r\n  tags:\r\n  - es6\r\n  - 手册\r\n  ---\r\n  ```\r\n\r\n- 搜索页\r\n\r\n  搜索使用了插件[hexo-generator-search](https://github.com/PaicHyperionDev/hexo-generator-search) . 必须先npm install \r\n\r\n  a、npm install hexo-generator-search --save\r\n\r\n  b、在主目录`_config.yml`配置搜索选项\r\n\r\n  ```yaml\r\n  search:\r\n    path: search.xml\r\n    field: post\r\n  ```\r\n\r\n  c、参考创建页面创建search文件。\r\n\r\n\r\n- 配置多语言（可选）\r\n\r\n  menu配置中为`key:value` 格式，key支持多语言配置，翻译文件在languages文件夹下。\r\n\r\n\r\n- 评论\r\n\r\n  目前只支持disqus，在主目录中配置disqus_shortname\r\n\r\n  ```yaml\r\n  disqus_shortname: xxxyourdisqus\r\n  ```\r\n\r\n- 站点统计\r\n\r\n  支持百度统计和google统计，在主目录中配置\r\n\r\n  ```yaml\r\n  google_analytics: UA-xxxx\r\n  baidu_analytics: xxxx\r\n  ```\r\n\r\n如果喜欢并使用本主题，请在页面底部放置主题链接，以方便他人获取，如有问题，请提交issue。感谢。\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicroacup%2Fhexo-theme-microb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmicroacup%2Fhexo-theme-microb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicroacup%2Fhexo-theme-microb/lists"}