{"id":13577358,"url":"https://github.com/siegerts/hugo-theme-basic","last_synced_at":"2025-04-05T11:32:29.261Z","repository":{"id":50295558,"uuid":"168743880","full_name":"siegerts/hugo-theme-basic","owner":"siegerts","description":"Basic site theme styled with minimal tachyons, syntax highlighting, and blog series configuration. 📦","archived":false,"fork":false,"pushed_at":"2020-05-21T13:15:56.000Z","size":784,"stargazers_count":106,"open_issues_count":0,"forks_count":53,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-08-02T15:33:48.239Z","etag":null,"topics":["basic","blog","blogdown","hugo","hugo-theme","rstats","static-site","static-site-generator"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/siegerts.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}},"created_at":"2019-02-01T18:42:50.000Z","updated_at":"2024-05-31T20:57:47.000Z","dependencies_parsed_at":"2022-08-26T12:32:56.937Z","dependency_job_id":null,"html_url":"https://github.com/siegerts/hugo-theme-basic","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/siegerts%2Fhugo-theme-basic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siegerts%2Fhugo-theme-basic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siegerts%2Fhugo-theme-basic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siegerts%2Fhugo-theme-basic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/siegerts","download_url":"https://codeload.github.com/siegerts/hugo-theme-basic/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223186559,"owners_count":17102488,"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":["basic","blog","blogdown","hugo","hugo-theme","rstats","static-site","static-site-generator"],"created_at":"2024-08-01T15:01:20.811Z","updated_at":"2024-11-05T14:30:57.775Z","avatar_url":"https://github.com/siegerts.png","language":"HTML","funding_links":[],"categories":["HTML"],"sub_categories":[],"readme":"# hugo-theme-basic\n\nBasic personal site theme styled with minimal tachyons, syntax highlighting, and blog series configuration.\n\n## Demo\n\n[https://hugo-theme-basic.netlify.app/](https://hugo-theme-basic.netlify.app/)\n\n## Screenshot\n\n![](https://github.com/siegerts/hugo-theme-basic/blob/master/images/tn.png)\n\n## Features\n\n- ✨ Basic — HTML with a dash of style + emoji\n- 🌯 Extensible — Easily leverage [tachyons](https://tachyons.io/components/) to add more spice\n- 🗞️ `series` taxonomy - Automatically group posts and display within an isolated taxonomy type\n- 🥑 Syntax Highlighting - It's there when you need it\n\n## Installation\n\nRun this command from the root of your Hugo directory (Git needs to be installed):\n\n```\n$ git clone https://github.com/siegerts/hugo-theme-basic.git\n```\n\nOr, if your Hugo site is already in git, you can include this repository as a `git submodule`. This makes it easier to update this theme (_and for some deployment options i.e. Netlify_).\n\n```\n$ git submodule add https://github.com/siegerts/hugo-theme-basic.git themes/hugo-theme-basic\n```\n\nAlternatively, if you are not familiar with git, you can download the theme as a .zip file, unzip the theme contents, and then move the unzipped source into your themes directory.\n\nFor more information, read the official [documentation](https://gohugo.io/themes/installing-and-using-themes) of Hugo.\n\n## Run example site\n\nFrom the root of `themes/hugo-theme-basic/exampleSite`:\n\n```\nhugo server --themesDir ../..\n```\n\n## Configuration\n\nCheck out the sample `config.toml`file located in the [`exampleSite`](https://github.com/siegerts/hugo-theme-basic/tree/master/exampleSite) directory. Copy the `config.toml` to the root directory of your Hugo site, then edit as desired.\n\n## Content Types\n\n| Type        | Description                                                                                 | Command                              |\n| ----------- | ------------------------------------------------------------------------------------------- | ------------------------------------ |\n| **Post**    | Used for blog posts. Posts are listed on the `/post` page.                                  | `hugo new post/\u003cpost-name\u003e.md`       |\n| **Page**    | Used for site pages.                                                                        | `hugo new \u003cpage-name\u003e.md`            |\n| **Project** | Used for project pages. Extend project list by customizing `/layouts/section/project.html`. | `hugo new project/\u003cproject-name\u003e.md` |\n\n## Blog post series\n\nAn extra _taxonomy_, `series`, is added to allow for the grouping of blog posts. A _Read More_ section shows at the bottom of each post within the series when two or more posts are grouped.\n\n```toml\n[taxonomies]\n  category = \"categories\"\n  series = \"series\"\n  tag = \"tags\"\n```\n\n### _Series read more_\n\n![](https://github.com/siegerts/hugo-theme-basic/blob/master/images/series.png)\n\n## `.Params.Menu`\n\nMenu links are specified, in order, in the theme configuration.\n\nFor example:\n\n```toml\n[[params.menu]]\n  name = \"blog\"\n  url = \"blog/\"\n\n[[params.menu]]\n  name = \"post series\"\n  url = \"series/\"\n\n[[params.menu]]\n  name = \"about\"\n  url = \"about/\"\n```\n\n## Syntax highlighting\n\nSyntax highlighting is provided by [highlight.js](https://highlightjs.org/). The color theme can be changed by modifying the highlight.js stylesheet in `layouts/partials/head_includes.html`.\n\n## Acknowledgments\n\n- [tachyons](http://tachyons.io/)\n- [highlightjs](https://highlightjs.org/)\n\n## License\n\nThe code is available under the [MIT license](https://github.com/siegerts/hugo-theme-basic/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiegerts%2Fhugo-theme-basic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiegerts%2Fhugo-theme-basic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiegerts%2Fhugo-theme-basic/lists"}