{"id":16553570,"url":"https://github.com/roneoorg/hugo-theme-dimension","last_synced_at":"2026-02-06T09:05:03.318Z","repository":{"id":114778926,"uuid":"407032913","full_name":"RoneoOrg/hugo-theme-dimension","owner":"RoneoOrg","description":null,"archived":false,"fork":false,"pushed_at":"2021-09-16T05:31:53.000Z","size":9543,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-24T16:56:56.472Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RoneoOrg.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-09-16T05:29:36.000Z","updated_at":"2021-09-16T05:31:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"8cdc5003-5368-4590-b8d7-ebcd9a6614d1","html_url":"https://github.com/RoneoOrg/hugo-theme-dimension","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RoneoOrg/hugo-theme-dimension","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoneoOrg%2Fhugo-theme-dimension","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoneoOrg%2Fhugo-theme-dimension/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoneoOrg%2Fhugo-theme-dimension/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoneoOrg%2Fhugo-theme-dimension/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RoneoOrg","download_url":"https://codeload.github.com/RoneoOrg/hugo-theme-dimension/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RoneoOrg%2Fhugo-theme-dimension/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267678448,"owners_count":24126333,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2024-10-11T19:48:45.178Z","updated_at":"2026-02-06T09:05:03.287Z","avatar_url":"https://github.com/RoneoOrg.png","language":"SCSS","funding_links":["https://www.buymeacoffee.com/dasnaghi"],"categories":[],"sub_categories":[],"readme":"# Dimension\n\nA hugo port of HTML5UP's responsive and minimal dimension theme. With native support for Netlify's headless CMS.\n\n![Dimension](https://github.com/your-identity/hugo-theme-dimension/blob/master/images/screenshot.png?raw=1)\n\n---\n\n- [Dimension](#dimension)\n  - [How to start](#how-to-start)\n  - [How to configure](#how-to-configure)\n  - [Post archetype](#post-archetype)\n    - [`background` and `logo` Params](#background-and-logo-params)\n  - [How to run your site](#how-to-run-your-site)\n  - [How to contribute](#how-to-contribute)\n  - [Sponsoring](#sponsoring)\n  - [License](#license)\n\n## How to start\n\nYou can download the theme manually by going to [https://github.com/your-identity/hugo-theme-dimension.git](https://github.com/your-identity/hugo-theme-dimension.git) and pasting it to `themes/dimension` in your root directory.\n\nYou can also clone it directly to your Hugo folder:\n\n```\n$ git clone https://github.com/your-identity/hugo-theme-dimension.git themes/dimension\n```\n\nIf you don't want to make any radical changes, it's the best option, because you can get new updates when they are available. You can also include it as a git submodule:\n\n```\n$ git submodule add https://github.com/your-identity/hugo-theme-dimension.git themes/dimension\n```\n\n## How to configure\n\nThe theme doesn't require any advanced configuration. Just copy:\n\n```toml\nbaseURL = \"http://example.org/\"\nlanguageCode = \"en-us\"\ntitle = \"My New Hugo Site\"\ntheme = \"dimension\"\n```\n\nto `config.toml` file in your Hugo root directory and change params fields.\n\n**NOTE:** All the main page styling and configuration can be done by creating `_index.md` pages in the `content` folder and subdirectories. This choice was made to allow the use of any headless CMS (e.g. netlify) for total customization.\n\n## Post archetype\n\nSee the basic `_index.md` file params supported by the theme — https://github.com/your-identity/hugo-theme-dimension/blob/master/archetypes/_index.md\n\n```toml\ntitle: Your Name\ndescription: A great human\nbackground: \"\u003cpath or link to image\u003e\"\nlogo: \"\u003cpath or link to image\u003e\"\n```\n\n### `background` and `logo` Params\n\nAs indicated above, `background` and `logo` can be an image of your choice by placing JPGs, PNGs, SVGs, etc. in the `static` directory of your repository. If the `static` directory does not yet exist, create it. \n\nGiven the following repo structure:\n```\n  .\n  ├── config.toml\n  ├── content\n  │   ├── posts\n  │   │   └── _index.md\n  │   ├── _index.md\n  │   └── elements.md\n  ├── static\n  │   └── images\n  │       ├── custom_bg.jpg  \n  │       └── custom_logo.svg\n  └── archetypes\n      └── default.md\n```\n\n`static/images/custom_bg.jpg` can be referenced in `content/_index.md` as:\n```yaml\n  ---\n  title: Your Name\n  description: A great human\n  background: \"images/custom_bg.jpg\"\n  logo: \"images/custom_logo.svg\"\n  ---\n```\n\n...or in `content/posts/_index.md` as:\n```yaml\n  ---\n  title: Posts\n  description: A great human's posts\n  background: \"../images/custom_bg.jpg\"\n  logo: \"../images/custom_logo.svg\"\n  ---\n```\n\nBoth fields may also be a URL to an online asset, such as:\n```yaml\n  ---\n  title: Posts\n  description: A great human's posts\n  logo: \"https://upload.wikimedia.org/wikipedia/commons/8/8e/Font_Awesome_5_regular_gem.svg\"\n  ---\n```\n\n## How to run your site\n\nFrom your Hugo root directory run:\n\n```\n$ hugo server -t dimension\n```\n\nand go to `localhost:1313` in your browser. From now on all the changes you make will go live, so you don't need to refresh your browser every single time.\n\n## How to contribute\n\nIf you spot any bugs, please use [Issue Tracker](https://github.com/your-identity/hugo-theme-dimension/issues) or if you want to add a new feature directly please create a new [Pull Request](https://github.com/your-identity/hugo-theme-dimension/pulls).\n\n## Sponsoring\n\nIf you like my work and want to support the development of the project, now you can! Just:\n\n\u003ca href=\"https://www.buymeacoffee.com/dasnaghi\" target=\"_blank\"\u003e\u003cimg src=\"https://res.cloudinary.com/panr/image/upload/v1579374705/buymeacoffee_y6yvov.svg\" alt=\"Buy Me A Coffee\" \u003e\u003c/a\u003e\n\n\n## License\n\nCopyright © 2020 Davide Asnaghi\n\nThe theme is released under the CC BY 3.0 License. Check the [original theme license](https://github.com/your-identity/hugo-theme-dimension/blob/master/LICENSE.md) for additional licensing information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froneoorg%2Fhugo-theme-dimension","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froneoorg%2Fhugo-theme-dimension","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froneoorg%2Fhugo-theme-dimension/lists"}