{"id":15025645,"url":"https://github.com/talkslab/metro-bootstrap","last_synced_at":"2025-04-11T03:34:00.265Z","repository":{"id":3236111,"uuid":"4272465","full_name":"TalksLab/metro-bootstrap","owner":"TalksLab","description":"Twitter Bootstrap with Metro style","archived":false,"fork":false,"pushed_at":"2025-03-08T05:21:44.000Z","size":4106,"stargazers_count":1042,"open_issues_count":3,"forks_count":360,"subscribers_count":119,"default_branch":"master","last_synced_at":"2025-04-03T14:07:40.316Z","etag":null,"topics":["hacktoberfest","maintainer-wanted"],"latest_commit_sha":null,"homepage":"http://talkslab.github.io/metro-bootstrap","language":"Less","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/TalksLab.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2012-05-09T14:23:44.000Z","updated_at":"2025-03-29T02:59:44.000Z","dependencies_parsed_at":"2024-10-26T08:32:44.029Z","dependency_job_id":"112b28d5-86a8-42d0-9354-7ad18bb4fef3","html_url":"https://github.com/TalksLab/metro-bootstrap","commit_stats":{"total_commits":71,"total_committers":16,"mean_commits":4.4375,"dds":0.5915492957746479,"last_synced_commit":"72eee9cf050f5ada86949726f8c90be7e1985445"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TalksLab%2Fmetro-bootstrap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TalksLab%2Fmetro-bootstrap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TalksLab%2Fmetro-bootstrap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TalksLab%2Fmetro-bootstrap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TalksLab","download_url":"https://codeload.github.com/TalksLab/metro-bootstrap/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248336420,"owners_count":21086785,"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":["hacktoberfest","maintainer-wanted"],"created_at":"2024-09-24T20:02:43.804Z","updated_at":"2025-04-11T03:34:00.093Z","avatar_url":"https://github.com/TalksLab.png","language":"Less","funding_links":[],"categories":[],"sub_categories":[],"readme":"﻿# metro-bootstrap\n\nSimple bootstrap from Twitter with Metro style.\n\n\n\n## Maintainers Wanted\n\nUnfortunately, the former maintainers no longer have the time and/or resources to work on this project. This means that bugs will not be fixed and features will not be added unless someone else does so.\n\nIf you're interested in fixing up metro-bootstrap, please reply to this [GitHub issue (#65)](https://github.com/TalksLab/metro-bootstrap/issues/65).\n\n## Demo\n\nFor a live preview of the theme, see [http://talkslab.github.com/metro-bootstrap](http://talkslab.github.com/metro-bootstrap).\n\n## Repository structure\n\nIn the repository you will find the following directories:\n\n    app/\n    ├── fonts/\n    │   └── (FontAwesome files)\n    └── less/\n        └── (metro-bootstrap less files)\n    dist/\n    ├── fonts/\n    │   └── font-awesome/\n    │   │   └── (FontAwesome files)\n    └── css/\n        ├── metro-bootstrap.css\n        └── metro-bootstrap.min.css\n\nWe provide compiled CSS (`metro-bootstrap.css`) in the dist folder, as well as compiled and minified CSS (`metro-bootstrap.min.css`).\n\n## Installation\n\nYou can install and use `metro-bootstrap` in your project using npm:\n\n```bash\nnpm install @talkslab/metro-bootstrap\n```\n\n### Alternatively, you can also use either a **Git clone** or a **CDN**.\n\n### 1. Using Git Clone\n\nTo clone the repository and include `metro-bootstrap`:\n\n```bash\ngit clone https://github.com/TalksLab/metro-bootstrap.git\n```\n\nAfter cloning, you can directly link the CSS files located in the `dist/css/` directory in your HTML:\n\n```html\n\u003clink rel=\"stylesheet\" href=\"path/to/metro-bootstrap/dist/css/metro-bootstrap.min.css\"\u003e\n```\n\n### 2. Using a CDN\n\nYou can include the `metro-bootstrap` CSS directly from a CDN for ease of use. Add the following line in your HTML `\u003chead\u003e`:\n\n```html\n\u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/gh/TalksLab/metro-bootstrap@master/dist/css/metro-bootstrap.min.css\"\u003e\n```\n\nThis will pull the latest compiled and minified CSS directly from the repository.\n\n## Installing Dependencies\n\nWe manage dependencies using npm. \n\n1. Make sure you have Node.js installed.\n2. Go to the `metro-bootstrap` directory, then run:\n\n   ```bash\n   npm install\n   ```\n\nThis will install the necessary dependencies as specified in the `package.json` file.\n\n## Compiling CSS\n\nWe compile `metro-bootstrap` using Gulp. To do so, follow these steps:\n\n1. If you don't have Gulp installed globally, you can install it by running:\n\n   ```bash\n   npm install -g gulp-cli\n   ```\n\n2. To compile the CSS into the `dist` folder, run:\n\n   ```bash\n   gulp\n   ```\n\nThis command will clean the `dist` directory, compile the LESS files, and copy the fonts.\n\n## License\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:\n\n[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalkslab%2Fmetro-bootstrap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftalkslab%2Fmetro-bootstrap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftalkslab%2Fmetro-bootstrap/lists"}