{"id":13431418,"url":"https://github.com/carsonip/hugo-theme-minos","last_synced_at":"2025-07-17T07:32:12.600Z","repository":{"id":53146156,"uuid":"82418156","full_name":"carsonip/hugo-theme-minos","owner":"carsonip","description":"A simple and retro styled Hugo theme ported from Hexo","archived":false,"fork":false,"pushed_at":"2021-04-04T15:18:35.000Z","size":2001,"stargazers_count":139,"open_issues_count":7,"forks_count":74,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-05-20T09:19:46.718Z","etag":null,"topics":["hugo","hugo-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/carsonip.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-02-18T21:48:02.000Z","updated_at":"2024-04-18T18:14:38.000Z","dependencies_parsed_at":"2022-09-12T10:41:42.048Z","dependency_job_id":null,"html_url":"https://github.com/carsonip/hugo-theme-minos","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/carsonip/hugo-theme-minos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carsonip%2Fhugo-theme-minos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carsonip%2Fhugo-theme-minos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carsonip%2Fhugo-theme-minos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carsonip%2Fhugo-theme-minos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/carsonip","download_url":"https://codeload.github.com/carsonip/hugo-theme-minos/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carsonip%2Fhugo-theme-minos/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265577431,"owners_count":23791148,"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":["hugo","hugo-theme"],"created_at":"2024-07-31T02:01:02.959Z","updated_at":"2025-07-17T07:32:12.574Z","avatar_url":"https://github.com/carsonip.png","language":"CSS","funding_links":[],"categories":["Content","CSS"],"sub_categories":[],"readme":"# Minos\n\n**_A simple and retro styled theme, concentrated more on your ideas._**\n\nMinos is a Hugo theme ported from Hexo theme [Minos](https://github.com/ppoffice/hexo-theme-minos). Requires Hugo v0.59+.\n\n## Screenshots\n\n![Home](https://cdn.rawgit.com/carsonip/hugo-theme-minos/cb2cdd88/images/screenshot.png)\n![Article](https://cdn.rawgit.com/carsonip/hugo-theme-minos/cb2cdd88/images/article.png)\n![Tag](https://cdn.rawgit.com/carsonip/hugo-theme-minos/cb2cdd88/images/tag.png)\n\n## Features\n\n* Everything in the original Mino theme, except\n    * Gallery (fancybox)\n    * Duoshuo comment\n    * Search box\n    * Hierarchical categories (since this isn't supported in Hugo)\n* Smart table of contents (will highlight and expand current section in TOC)\n* Disqus\n* Google Analytics\n* [KaTeX](https://github.com/Khan/KaTeX)\n* Syntax highlighting using [highlight.js](https://github.com/isagalaev/highlight.js)\n\n## Installation\n\nTo install Minos as your theme, first clone this repository in the `themes/` directory:\n\n```\n$ cd themes/\n$ git clone --depth 1 https://github.com/carsonip/hugo-theme-minos\n```\n\nSecond, specify `hugo-theme-minos` as your default theme in the config.toml file. Just add the line\n\n```\ntheme = \"hugo-theme-minos\"\n```\n\n## Options\n\n### Pagination\n```\npaginate = 10\n```\n\n### Smart TOC\n```\n[params]\n    smartToc = true\n```\n\n### Post Navigation\n```\n[params]\n    noPostNavigation = true\n```\n\nThis option disables links to next and previous post at the bottom of posts.\n\n### Disqus\n```\ndisqusShortname = \"xxxxxx\"\n```\n\n### Google Analytics\n```\ngoogleAnalytics = \"UA-123-45\"\n```\n\n### KaTeX\n```\n[params]\n    katex = true\n```\n\nThis option enables the KaTeX auto-render extension. To render block math, use `$$ ... $$`. For inline math, use `\\\\( ... \\\\)`. For more details, please refer to https://github.com/KaTeX/KaTeX/blob/v0.7.1/contrib/auto-render/auto-render.js#L73 .\n\n### Custom CSS\n```\n[params]\n    customCss = [\"css/foo.css\"]\n```\n\n### Others\n\nFor other configuration variables, visit [Hugo documentation](https://gohugo.io/overview/configuration/#configuration-variables).\n\n## Post Params\n\n### Featured Image displayed in index.html\n```\n+++\nfeaturedImage = \"img/foobar.jpg\"\n+++\n```\n\n### Hide the post from index.html\nThis can be used when creating an \"About me\"-page.\n```\n+++\nhidden = true\n+++\n```\n\n### Enable KaTeX for this post\nEnable KaTeX for a specific post without enabling the global switch.\n```\n+++\nkatex = true\n+++\n```\n\n### Suppress date in an article\nHide the date from an article, e.g. because it's just an index:\n```\n+++\nomitDate = true\n+++\n```\n\n## Contributing\n\n1. Fork it!\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request :D\n\n## Original Author\n\nPPOffice\n\n* https://github.com/ppoffice\n\n## Ported by\n\nCarson Ip\n\n* https://github.com/carsonip\n\n## License\n\nLicensed under the MIT License. See the [LICENSE](https://github.com/carsonip/hugo-theme-minos/blob/master/LICENSE.md) file for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarsonip%2Fhugo-theme-minos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcarsonip%2Fhugo-theme-minos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarsonip%2Fhugo-theme-minos/lists"}