{"id":31768113,"url":"https://github.com/pthm/bootstrap-amuzor","last_synced_at":"2026-02-16T07:02:41.123Z","repository":{"id":81290907,"uuid":"44248768","full_name":"pthm/bootstrap-amuzor","owner":"pthm","description":"A shameful clone of the Amuzor styles packaged in a bootstrap theme","archived":false,"fork":false,"pushed_at":"2015-10-14T13:20:59.000Z","size":408,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-12-15T10:32:58.663Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pthm.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":"2015-10-14T13:20:01.000Z","updated_at":"2015-10-14T13:21:01.000Z","dependencies_parsed_at":"2023-03-12T13:34:41.733Z","dependency_job_id":null,"html_url":"https://github.com/pthm/bootstrap-amuzor","commit_stats":null,"previous_names":[],"tags_count":0,"template":null,"template_full_name":null,"purl":"pkg:github/pthm/bootstrap-amuzor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pthm%2Fbootstrap-amuzor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pthm%2Fbootstrap-amuzor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pthm%2Fbootstrap-amuzor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pthm%2Fbootstrap-amuzor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pthm","download_url":"https://codeload.github.com/pthm/bootstrap-amuzor/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pthm%2Fbootstrap-amuzor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279002396,"owners_count":26083375,"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-10-09T02:00:07.460Z","response_time":59,"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":"2025-10-10T01:55:02.284Z","updated_at":"2025-10-10T01:55:06.457Z","avatar_url":"https://github.com/pthm.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Themestrap\n\n**Themestrap** is a simple starter kit for constructing Twitter Bootstrap 3+ themes. It provides the skeleton\nfor a simple, maintainable theme that always uses code directly from Bootstrap with as little replacement as\npossible.\n\n## Themestrap's Philosophy\n\n1. A theme should be built *on top* of the framework, with as little intrusive change as possible.\n2. As the framework evolves, a theme should be easily updated to the latest version.\n\nTo this end, Themestrap provides you with two simple files to modify: **variables.less**\nand **theme.less** (both in the `less` directory). You can tweak any and all of the Bootstrap variables \nin **variables.less** and support any additional code or classes you'd like in **theme.less**. The compiled\ntheme CSS includes the Bootstrap library and will automatically pick up any overrides from variables.\n\n## Creating a Theme with Themestrap\n\nTo create a theme, first start by cloning the Themestrap repository into a directory named for\nyour theme. We recommend a `bootstrap-theme-THEME_NAME` naming scheme:\n\n    git clone https://github.com/divshot/themestrap.git bootstrap-theme-THEME_NAME\n    \nNext, you should open `bower.json` and change the package name from `bootstrap-theme-themestrap`\nto match what you want your theme to be named. Now you're ready to install dependencies using\n[Grunt](http://gruntjs.com) and [Bower](https://github.com/bower/bower) (you must have these\ninstalled).\n\n    npm install\n    bower install\n    \nNow you're ready to go! Simply edit `less/variables.less` and `less/theme.less` to your liking.\nWhen you're ready, just run `grunt` and it will compile and minify the distribution for you.\nYou can also run `grunt watch` to automatically compile as you work.\n\n## Testing Out Your Theme\n\nWe've provided a \"Bootstrap Kitchen Sink\" HTML file at `examples/kitchen-sink.html` that contains\nall of the various components in all of their variations. It may not be 100% exhaustive but it\nshould give you a good idea of what your theme will look like at a glance.\n\nYou can start a development server at `http://localhost:8000` by running `grunt serve`. Your theme will automatically compile while the server is running.\n\n## Deeper Customization\n\nIn cases where you need to do a more in-depth overhaul of a portion of Bootstrap's LESS, you may do so by\nsimply copying over a file from Bootstrap's `less` directory into your theme's `less` directory and then\nmodifying it as necessary. Example:\n\n    cp bower_components/bootstrap/less/alerts.less less/alerts.less\n\nBecause it takes path priority over the Bower-installed Bootstrap LESS, it will automatically override the \nBootstrap default. In fact, this is how `variables.less` works already...delete it and the default Bootstrap\nvariables will be back in play.\n\n## Releasing Your Theme\n\nBefore you release your theme, you should do a few things:\n\n1. Make sure that you've updated the package name in `bower.json` and filled out your name, the theme name and GitHub repo info\n2. Check the `index.html` file – it is generated using the information you supplied in `bower.json`.  To change it to suit your needs, edit the template `/pages/index.html`.\n3. Update the `README.md` file to be about your theme\n\nOnce you've done that, you should push it up to GitHub. The repository\nis already designed to be released directly onto GitHub Pages without an additional intermediary,\nso if you push to the `gh-pages` branch you should have a nice way to show off your theme!\n\nAlso consider [registering a Bower package](https://github.com/bower/bower#registering-packages).\nIf you do, remove the `\"private\": true` property from `bower.json`.\n\n## The Themestrap Gallery\n\nWe've created a [gallery of themes built with Themestrap](http://code.divshot.com/themestrap). If you\nhave created a theme and want to add it to the gallery, just make a pull request to the [gh-pages](https://github.com/divshot/themestrap/tree/gh-pages)\nbranch of this repository.\n\n## Copyright and license\n\nCopyright 2013 Divshot, Inc. under [the Apache 2.0 license](LICENSE).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpthm%2Fbootstrap-amuzor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpthm%2Fbootstrap-amuzor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpthm%2Fbootstrap-amuzor/lists"}